Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[java] UnusedLocalVariable: false-negative with compound assignments #4517

Closed
adangel opened this issue Apr 28, 2023 · 0 comments · Fixed by #4501
Closed

[java] UnusedLocalVariable: false-negative with compound assignments #4517

adangel opened this issue Apr 28, 2023 · 0 comments · Fixed by #4501
Labels
a:false-negative PMD doesn't flag a problematic piece of code
Milestone

Comments

@adangel
Copy link
Member

adangel commented Apr 28, 2023

Affects PMD Version: 6.x

Rule: UnusedLocalVariable

Description:

If a variable is only used in a compound statement (e.g. +=), then this should not count as usage and a violation should be reported.

Note: This has already been fixed with PMD 7.0.0-rc1. (via #3113)
Found via #3123.

Code Sample demonstrating the issue:

public class UnusedCompoundAssignment {
    void this_is_unused() {
        int x = 0; // violation expected (line 3)
        x += 2;    // doesn't count as usage
    }
    void transitive_used_but_unused1() {
        int a = 1; // _no_ violation expected, a is used
        int b = a; // _no_ violation expected, b is used
        int c = b; // violation expected (line 9)
    }
    void transitive_used_but_unused2() {
        int a, b, c; // 1 violation expected, only c is unused (line 12)
        a = 1;
        b = a;
        c = b;
    }
    void transitive_used() {
        int a, b, c; // _no_ violation expected
        a = 1;
        b = a;
        c = b;
        System.out.println(c); // usage
    }
    void this_is_used() {
        int y = 0; // _no_ violation expected
        y += 2;
        System.out.println(y); // usage
    }
}

Expected outcome:

PMD should report a violation at line 3, but doesn't. This is a false-negative.

@adangel adangel added the a:false-negative PMD doesn't flag a problematic piece of code label Apr 28, 2023
@adangel adangel added this to the 7.0.0 milestone Apr 28, 2023
@adangel adangel changed the title [java] UnusedLocalVariable false-positive with compound assignments [java] UnusedLocalVariable false-negative with compound assignments Apr 28, 2023
@adangel adangel changed the title [java] UnusedLocalVariable false-negative with compound assignments [java] UnusedLocalVariable: false-negative with compound assignments Apr 28, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
a:false-negative PMD doesn't flag a problematic piece of code
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant