A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://github.com/pmd/pmd/issues/4511 below:

[java] LocalVariableCouldBeFinal shouldn't report unused variables · Issue #4511 · pmd/pmd · GitHub

Affects PMD Version: 6.x

Rule: LocalVariableCouldBeFinal

Description:

A local variable, that is just defined but not used, is a different problem: UnusedLocalVariable. Make the variable final doesn't fix anything.

Found via #3123. It's already fixed with PMD 7.0.0-rc1.
Was fixed via #3113.

Code Sample demonstrating the issue:

public class Foo {
    public void test1() {
        int a = 0; // not final, but also not used
    }
}

Expected outcome:

PMD reports a violation at line 3, but that's wrong. That's a false positive.


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4