UnnecessaryFinal
Since Java 8, it's been unnecessary to make local variables and parameters `final` for use in lambdas or anonymous classes. Marking them as `final` is weakly discouraged, as it adds a fair amount of noise for minimal benefit.
Suppression
Suppress false positives by adding the suppression annotation @SuppressWarnings("UnnecessaryFinal")
to the enclosing element.