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

FinalClassCheck: False positive with anonymous classes #11365

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

FinalClassCheck: False positive with anonymous classes #11365

Vyom-Yadav opened this issue Mar 6, 2022 · 2 comments · Fixed by #11468

Comments

@Vyom-Yadav
Copy link
Member

Vyom-Yadav commented Mar 6, 2022

I have read check documentation: https://checkstyle.sourceforge.io/config_design.html#FinalClass
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="FinalClass"/>
    </module>
</module>
/var/tmp $ cat Test.java
public class Test {

    class a { // expected no violation
        private a() {
        }
    }

    a obj = new a() {
    };
}
/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:3:5: Class a should be declared as final. [FinalClass]
Audit done.
Checkstyle ends with 1 errors.

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.

This was supposed to be fixed in #9357. Making the class final results in a compile-time error.

@Vyom-Yadav
Copy link
Member Author

I am on it.

@romani romani added the approved label Mar 6, 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 Apr 4, 2022
Vyom-Yadav added a commit to Vyom-Yadav/checkstyle that referenced this issue Apr 4, 2022
Vyom-Yadav added a commit to Vyom-Yadav/checkstyle that referenced this issue Apr 8, 2022
Vyom-Yadav added a commit to Vyom-Yadav/checkstyle that referenced this issue Apr 8, 2022
Vyom-Yadav added a commit to Vyom-Yadav/checkstyle that referenced this issue Apr 8, 2022
Vyom-Yadav added a commit to Vyom-Yadav/checkstyle that referenced this issue Apr 12, 2022
Vyom-Yadav added a commit to Vyom-Yadav/checkstyle that referenced this issue Apr 12, 2022
Vyom-Yadav added a commit to Vyom-Yadav/checkstyle that referenced this issue Apr 12, 2022
Vyom-Yadav added a commit to Vyom-Yadav/checkstyle that referenced this issue Apr 12, 2022
Vyom-Yadav added a commit to Vyom-Yadav/checkstyle that referenced this issue Apr 13, 2022
Vyom-Yadav added a commit to Vyom-Yadav/checkstyle that referenced this issue Apr 13, 2022
Vyom-Yadav added a commit to Vyom-Yadav/checkstyle that referenced this issue Apr 24, 2022
Vyom-Yadav added a commit to Vyom-Yadav/checkstyle that referenced this issue Apr 24, 2022
Vyom-Yadav added a commit to Vyom-Yadav/checkstyle that referenced this issue May 6, 2022
Vyom-Yadav added a commit to Vyom-Yadav/checkstyle that referenced this issue May 7, 2022
Vyom-Yadav added a commit to Vyom-Yadav/checkstyle that referenced this issue May 15, 2022
Vyom-Yadav added a commit to Vyom-Yadav/checkstyle that referenced this issue May 15, 2022
Vyom-Yadav added a commit to Vyom-Yadav/checkstyle that referenced this issue May 15, 2022
Vyom-Yadav added a commit to Vyom-Yadav/checkstyle that referenced this issue May 15, 2022
Vyom-Yadav added a commit to Vyom-Yadav/checkstyle that referenced this issue May 15, 2022
Vyom-Yadav added a commit to Vyom-Yadav/checkstyle that referenced this issue May 17, 2022
Vyom-Yadav added a commit to Vyom-Yadav/checkstyle that referenced this issue May 18, 2022
Vyom-Yadav added a commit to Vyom-Yadav/checkstyle that referenced this issue May 18, 2022
Vyom-Yadav added a commit to Vyom-Yadav/checkstyle that referenced this issue May 21, 2022
Vyom-Yadav added a commit to Vyom-Yadav/checkstyle that referenced this issue Jun 8, 2022
@romani romani added the bug label Jun 8, 2022
@romani romani added this to the 10.4 milestone Jun 8, 2022
@romani
Copy link
Member

romani commented Jun 8, 2022

fix is merged

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
2 participants