REDUN.FINALThis issue is reported when a 'private' method is declared 'final'. Since private methods cannot be meaningfully overridden, declaring them final is redundant. Example 19 private final void foo() { 10 11 } REDUN.FINAL is reported for method declaration on line 9: Redundant 'final' modifier |