You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are warnings in eclipse on generated code.
I tried to suppress them in palantir/gradle-conjure#951 but if we can suppress them at the source, that would be great.
All methods in a class DefaultBuilder implements Builder seem to be missing @Override
These can be unused: _plainSerDe on Async and Blocking classes. UndertowRuntime runtime on an Endpoint.
There may be more, but I am currently working on a very small project with only these warnings.
What did you want to happen?
No warnings in eclipse on generated code.
The text was updated successfully, but these errors were encountered:
Remove @SuppressWarnings("deprecation") on deprecated methods. The
annotation is for suppressing calls of deprecated methods, not
implementation of deprecated methods.
Only generated _plainSerDe when it is used.
Fixes#1635
Remove @SuppressWarnings("deprecation") on deprecated methods. The
annotation is for suppressing calls of deprecated methods, not
implementation of deprecated methods.
partial fix for #1635
What happened?
There are warnings in eclipse on generated code.
I tried to suppress them in palantir/gradle-conjure#951 but if we can suppress them at the source, that would be great.
All methods in a
class DefaultBuilder implements Builder
seem to be missing@Override
These can be unused:
_plainSerDe
on Async and Blocking classes.UndertowRuntime runtime
on an Endpoint.There may be more, but I am currently working on a very small project with only these warnings.
What did you want to happen?
No warnings in eclipse on generated code.
The text was updated successfully, but these errors were encountered: