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

UnusedLocalVariable: False Positive when inner class has same field as variable #11374

Closed
Vyom-Yadav opened this issue Mar 7, 2022 · 2 comments · Fixed by #15969
Closed

UnusedLocalVariable: False Positive when inner class has same field as variable #11374

Vyom-Yadav opened this issue Mar 7, 2022 · 2 comments · Fixed by #15969

Comments

@Vyom-Yadav
Copy link
Member

Vyom-Yadav commented Mar 7, 2022

I have read check documentation: https://checkstyle.sourceforge.io/config_coding.html#UnusedLocalVariable
I have downloaded the latest checkstyle from: https://checkstyle.org/cmdline.html#Download_and_Run
I have executed the cli and showed it below, as cli describes the problem better than 1,000 words

/var/tmp $ javac Test.java

/var/tmp $ cat config.xml
<?xml version="1.0"?>
<!DOCTYPE module PUBLIC
        "-//Checkstyle//DTD Checkstyle Configuration 1.3//EN"
        "https://checkstyle.org/dtds/configuration_1_3.dtd">
<module name="Checker">
    <module name="TreeWalker">
        <module name="UnusedLocalVariable"/>
    </module>
</module>
/var/tmp $ cat Test.java
public class Test {

    static class m {
        static class h {
            public int a = 12;
        }
    }

    static class j {
        static void method() {
            int a = 1000; // unexpected violation
            m.h obj = new m.h() { // object of Test.j.m.h and not of Test.m.h
                @Override
                void method() {
                    System.out.println("a = " + a); // local var a
                }
            };
            obj.method();
        }

        static class m {
            static class h {
                void method() {
                }
            }
        }
    }

    public static void main(String[] args) {
        j.method();
    }
}
/var/tmp $ RUN_LOCALE="-Duser.language=en -Duser.country=US"
/var/tmp $ java $RUN_LOCALE -jar checkstyle-10.0-all.jar -c config.xml Test.java
Starting audit...
[ERROR] /var/tmp/Test.java:11:13: Unused local variable 'a'. [UnusedLocalVariable]
Audit done.
Checkstyle ends with 1 errors.
/var/tmp $ java Test.java
a = 1000

Describe what you expect in detail.

/var/tmp $ RUN_LOCALE="-Duser.language=en -Duser.country=US"
/var/tmp $ java $RUN_LOCALE -jar checkstyle-10.0-all.jar -c config.xml Test.java
Starting audit...
Audit done.

Discovered while working on #11365, the source has been identified, the fix has been done locally, will be pushed soon.

@Vyom-Yadav
Copy link
Member Author

Vyom-Yadav commented Mar 22, 2022

@Vishakhakumawat Fix has already been done, just pushing to remote is remaining, it is mentioned in issue description

@checkstyle checkstyle deleted a comment from Vishakhakumawat Mar 22, 2022
@checkstyle checkstyle deleted a comment from Vishakhakumawat Mar 22, 2022
@checkstyle checkstyle deleted a comment from Vyom-Yadav Mar 22, 2022
Vyom-Yadav added a commit to Vyom-Yadav/checkstyle that referenced this issue Mar 26, 2022
Vyom-Yadav added a commit to Vyom-Yadav/checkstyle that referenced this issue Mar 26, 2022
Vyom-Yadav added a commit to Vyom-Yadav/checkstyle that referenced this issue Mar 26, 2022
Vyom-Yadav added a commit to Vyom-Yadav/checkstyle that referenced this issue Mar 26, 2022
Vyom-Yadav added a commit to Vyom-Yadav/checkstyle that referenced this issue Mar 31, 2022
Vyom-Yadav added a commit to Vyom-Yadav/checkstyle that referenced this issue Mar 31, 2022
Vyom-Yadav added a commit to Vyom-Yadav/checkstyle that referenced this issue Mar 31, 2022
Vyom-Yadav added a commit to Vyom-Yadav/checkstyle that referenced this issue Mar 31, 2022
Vyom-Yadav added a commit to Vyom-Yadav/checkstyle that referenced this issue Mar 31, 2022
Vyom-Yadav added a commit to Vyom-Yadav/checkstyle that referenced this issue Apr 1, 2022
Vyom-Yadav added a commit to Vyom-Yadav/checkstyle that referenced this issue Apr 3, 2022
Vyom-Yadav added a commit to Vyom-Yadav/checkstyle that referenced this issue Apr 3, 2022
Vyom-Yadav added a commit to Vyom-Yadav/checkstyle that referenced this issue Apr 3, 2022
Vyom-Yadav added a commit to Vyom-Yadav/checkstyle that referenced this issue Mar 4, 2023
Vyom-Yadav added a commit to Vyom-Yadav/checkstyle that referenced this issue Mar 4, 2023
Vyom-Yadav added a commit to Vyom-Yadav/checkstyle that referenced this issue Mar 4, 2023
Vyom-Yadav added a commit to Vyom-Yadav/checkstyle that referenced this issue Mar 4, 2023
Vyom-Yadav added a commit to Vyom-Yadav/checkstyle that referenced this issue Mar 7, 2023
Vyom-Yadav added a commit to Vyom-Yadav/checkstyle that referenced this issue Mar 7, 2023
Vyom-Yadav added a commit to Vyom-Yadav/checkstyle that referenced this issue Mar 8, 2023
Vyom-Yadav added a commit to Vyom-Yadav/checkstyle that referenced this issue Mar 28, 2023
Vyom-Yadav added a commit to Vyom-Yadav/checkstyle that referenced this issue Mar 28, 2023
Vyom-Yadav added a commit to Vyom-Yadav/checkstyle that referenced this issue Apr 7, 2023
Vyom-Yadav added a commit to Vyom-Yadav/checkstyle that referenced this issue Nov 30, 2023
Vyom-Yadav added a commit to Vyom-Yadav/checkstyle that referenced this issue Nov 30, 2023
romani pushed a commit to Vyom-Yadav/checkstyle that referenced this issue Dec 1, 2023
kkoutsilis added a commit to kkoutsilis/checkstyle that referenced this issue Nov 29, 2024
kkoutsilis added a commit to kkoutsilis/checkstyle that referenced this issue Nov 29, 2024
kkoutsilis added a commit to kkoutsilis/checkstyle that referenced this issue Dec 2, 2024
kkoutsilis added a commit to kkoutsilis/checkstyle that referenced this issue Dec 7, 2024
kkoutsilis added a commit to kkoutsilis/checkstyle that referenced this issue Dec 7, 2024
romani pushed a commit to kkoutsilis/checkstyle that referenced this issue Dec 7, 2024
kkoutsilis added a commit to kkoutsilis/checkstyle that referenced this issue Dec 7, 2024
kkoutsilis added a commit to kkoutsilis/checkstyle that referenced this issue Dec 8, 2024
kkoutsilis added a commit to kkoutsilis/checkstyle that referenced this issue Dec 14, 2024
nrmancuso pushed a commit that referenced this issue Dec 16, 2024
@github-actions github-actions bot added this to the 10.21.1 milestone Dec 16, 2024
@nrmancuso
Copy link
Member

Closed via #15969

@nrmancuso nrmancuso added the bug label Dec 16, 2024
@romani romani changed the title False Positive: UnusedLocalVariableCheck UnusedLocalVariable: False Positive when inner class has same field as variable Dec 27, 2024
dongjoon-hyun pushed a commit to apache/spark that referenced this issue Feb 12, 2025
### What changes were proposed in this pull request?

This PR aims to upgrade `checkstyle` from 10.20.2 to 10.21.2.

### Why are the changes needed?

To pick up bug fixes:
- checkstyle-10.21.2
checkstyle/checkstyle#15939 - lineWrappingIndentation falsely detects incorrect indentation for text blocks
checkstyle/checkstyle#16101 - ignoreFieldDeclaration property should have the highest priority in MagicNumberCheck
- checkstyle-10.21.1
checkstyle/checkstyle#11374 - UnusedLocalVariable: False Positive when inner class has same field as variable

Full release notes:

- https://github.com/checkstyle/checkstyle/releases/tag/checkstyle-10.21.2
- https://github.com/checkstyle/checkstyle/releases/tag/checkstyle-10.21.1

### Does this PR introduce _any_ user-facing change?

No.

### How was this patch tested?

Manually by:
```
bash ./dev/lint-java
```

### Was this patch authored or co-authored using generative AI tooling?

No.

Closes #49899 from wayneguow/checkstyle.

Authored-by: Wei Guo <[email protected]>
Signed-off-by: Dongjoon Hyun <[email protected]>
kazemaksOG pushed a commit to kazemaksOG/spark-custom-scheduler that referenced this issue Mar 27, 2025
### What changes were proposed in this pull request?

This PR aims to upgrade `checkstyle` from 10.20.2 to 10.21.2.

### Why are the changes needed?

To pick up bug fixes:
- checkstyle-10.21.2
checkstyle/checkstyle#15939 - lineWrappingIndentation falsely detects incorrect indentation for text blocks
checkstyle/checkstyle#16101 - ignoreFieldDeclaration property should have the highest priority in MagicNumberCheck
- checkstyle-10.21.1
checkstyle/checkstyle#11374 - UnusedLocalVariable: False Positive when inner class has same field as variable

Full release notes:

- https://github.com/checkstyle/checkstyle/releases/tag/checkstyle-10.21.2
- https://github.com/checkstyle/checkstyle/releases/tag/checkstyle-10.21.1

### Does this PR introduce _any_ user-facing change?

No.

### How was this patch tested?

Manually by:
```
bash ./dev/lint-java
```

### Was this patch authored or co-authored using generative AI tooling?

No.

Closes apache#49899 from wayneguow/checkstyle.

Authored-by: Wei Guo <[email protected]>
Signed-off-by: Dongjoon Hyun <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment