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

FileContents.getJavadocBefore(): Comments should not be skipped if it is not alone in line #16641

Closed
mahfouz72 opened this issue Mar 23, 2025 · 0 comments · Fixed by #16646
Closed

Comments

@mahfouz72
Copy link
Member

mahfouz72 commented Mar 23, 2025

#16546 (comment)

Detected at the report:
https://checkstyle-diff-reports.s3.us-east-2.amazonaws.com/f4d37cb_2025053704/reports/diff/index.html

unfortunately, In my previous PR the config in the PR description was missing some important checks, so the report generated shows no difference but this was misleading.

After I checked a report in another PR (that was behind my commit on master). I saw the real diff due to my changes and analyzed the report all was good except for this case and the like

Example:

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="JavadocVariable"/>
    </module>
</module>

D:\CS\test
cat src/Test.java
class Test {
    /**
     *  Javadoc
     */
    /* package */ int x;

    int y;
}
D:\CS\test
java  -jar checkstyle-10.22.0-SNAPSHOT-all.jar -c config.xml src/Test.java
Starting audit...
Audit done.

The issue because we skipped the line /* package */ int x; because it has a block comment. so int y becomes associated with the Javadoc above int x.

The fix should be simple. A simple condition to see if the block comment is in a single line and not alone in the line
then we should not skip it.

mahfouz72 added a commit to mahfouz72/checkstyle that referenced this issue Mar 23, 2025
mahfouz72 added a commit to mahfouz72/checkstyle that referenced this issue Mar 23, 2025
mahfouz72 added a commit to mahfouz72/checkstyle that referenced this issue Mar 23, 2025
mahfouz72 added a commit to mahfouz72/checkstyle that referenced this issue Mar 23, 2025
mahfouz72 added a commit to mahfouz72/checkstyle that referenced this issue Mar 27, 2025
mahfouz72 added a commit to mahfouz72/checkstyle that referenced this issue Mar 27, 2025
mahfouz72 added a commit to mahfouz72/checkstyle that referenced this issue Mar 28, 2025
romani pushed a commit that referenced this issue Mar 29, 2025
@romani romani added the bug label Mar 29, 2025
@github-actions github-actions bot added this to the 10.22.0 milestone Mar 29, 2025
pankratz76 pushed a commit to pankratz76/checkstyle that referenced this issue Mar 30, 2025
pankratz76 pushed a commit to pankratz76/checkstyle that referenced this issue Apr 1, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants