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

AnnotationOnSameLine: FalseNegative when the annotation is on the same line of the modifer of the target class #15161

Closed
mahfouz72 opened this issue Jun 28, 2024 · 2 comments
Labels
approved bug false negative issues where check should place violations on code, but does not
Milestone

Comments

@mahfouz72
Copy link
Member

mahfouz72 commented Jun 28, 2024

Check documentation : https://checkstyle.org/checks/annotation/annotationonsameline.html#AnnotationOnSameLine


PS D:\CS\test> javac src/Test.java                                               
PS D:\CS\test> 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="AnnotationOnSameLine"/>
  </module>
</module>

PS D:\CS\test> cat src/Test.java                                                 
import java.lang.annotation.Target;

import static java.lang.annotation.ElementType.TYPE_USE;

public  class Test {
  @Ann public   // expected violation
  @Ann2 class E {}

  @Ann private  //  expected violation
  @Ann2 class A {}

  @Ann sealed  //  expected violation
  @Ann2 class B permits C {}

  @Ann final  //  expected violation
  @Ann2 class C extends B {}


  @Target({TYPE_USE}) @interface Ann {}
  @Target({TYPE_USE}) @interface Ann2 {}
}

PS D:\CS\test> java  -jar checkstyle-10.17.0-all.jar -c config.xml  src/Test.java
Starting audit...
Audit done.

The annotation is on the same line with the modifier of the target class, not the target class itself so I expect violations for the above example

@romani romani added approved false negative issues where check should place violations on code, but does not labels Feb 17, 2025
@checkstyle checkstyle deleted a comment from mahfouz72 Feb 17, 2025
@romani
Copy link
Member

romani commented Feb 17, 2025

@Anmol202005 , pleasee help us to investigate and fix this issue.
For some reason Check missing inner classes declarations.

Anmol202005 added a commit to Anmol202005/checkstyle that referenced this issue Feb 19, 2025
Anmol202005 added a commit to Anmol202005/checkstyle that referenced this issue Feb 19, 2025
Anmol202005 added a commit to Anmol202005/checkstyle that referenced this issue Feb 20, 2025
Anmol202005 added a commit to Anmol202005/checkstyle that referenced this issue Feb 20, 2025
Anmol202005 added a commit to Anmol202005/checkstyle that referenced this issue Feb 20, 2025
Anmol202005 added a commit to Anmol202005/checkstyle that referenced this issue Feb 20, 2025
Anmol202005 added a commit to Anmol202005/checkstyle that referenced this issue Feb 21, 2025
Anmol202005 added a commit to Anmol202005/checkstyle that referenced this issue Feb 21, 2025
Anmol202005 added a commit to Anmol202005/checkstyle that referenced this issue Feb 21, 2025
Anmol202005 added a commit to Anmol202005/checkstyle that referenced this issue Feb 22, 2025
Anmol202005 added a commit to Anmol202005/checkstyle that referenced this issue Feb 22, 2025
romani pushed a commit to Anmol202005/checkstyle that referenced this issue Feb 22, 2025
@romani romani added the bug label Feb 22, 2025
romani pushed a commit that referenced this issue Feb 28, 2025
@romani
Copy link
Member

romani commented Feb 28, 2025

fix is merged

@romani romani closed this as completed Feb 28, 2025
@github-actions github-actions bot added this to the 10.21.4 milestone Feb 28, 2025
SheikhZaeem pushed a commit to SheikhZaeem/checkstyle that referenced this issue Feb 28, 2025
Bishoywadea pushed a commit to Bishoywadea/checkstyle that referenced this issue Mar 4, 2025
Issue checkstyle#15456: Specify violation messages for IllegalImportCheck
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
approved bug false negative issues where check should place violations on code, but does not
Projects
None yet
Development

No branches or pull requests

2 participants