-
Enhancement
-
Resolution: Unresolved
-
P4
-
None
-
5.0, 7
-
generic
-
generic
It should be possible to get a warning for overriding methods
without the @Override annotation. For example:
class Super { void foo() {} }
class Sub1 extends Super { void foo() {} } // warning
class Sub2 extends Super { @Override foo() {} } // no warning
without the @Override annotation. For example:
class Super { void foo() {} }
class Sub1 extends Super { void foo() {} } // warning
class Sub2 extends Super { @Override foo() {} } // no warning
- relates to
-
CODETOOLS-7902262 Add missing @Override annotations
-
- Resolved
-