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
Currently, the generated code does not mark methods with @Override, mostly because it's really hard to determine if a to-be-generated method should be overriding something else, given that we only have the javapoet specs to work with. However, it should be possible, using an insane amount of annotation model implementation, to work out exactly which methods are overriding, and add the annotation.
The text was updated successfully, but these errors were encountered:
Currently, the generated code does not mark methods with
@Override
, mostly because it's really hard to determine if a to-be-generated method should be overriding something else, given that we only have thejavapoet
specs to work with. However, it should be possible, using an insane amount of annotation model implementation, to work out exactly which methods are overriding, and add the annotation.The text was updated successfully, but these errors were encountered: