Synopsis: | Overriding method merely calls super |
Language: | Java |
Severity Level: | 2 |
Category: | Basic |
Description: |
The overriding method merely calls the same method defined in a superclasspublic String foo() { return super.foo(); //Why bother overriding? } |