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