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

UnnecessaryParenthesesCheck does not flag unnecessary parentheses in conditional expression #15263

Closed
mahfouz72 opened this issue Jul 14, 2024 · 7 comments · Fixed by #15681
Closed
Labels
approved false negative issues where check should place violations on code, but does not new feature
Milestone

Comments

@mahfouz72
Copy link
Member

mahfouz72 commented Jul 14, 2024

detected at #15250 (comment)
I have read check documentation: https://checkstyle.org/checks/coding/unnecessaryparentheses.html#UnnecessaryParentheses
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


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">
  <property name="haltOnException" value="true"/>
  <module name="TreeWalker">
    <module name="UnnecessaryParentheses">
    </module>
  </module>
</module>
PS D:\CS\test> cat src/Test.java

public class Test {
    void test(int x) {
        boolean a = (x == 3); // violation
        boolean b = (!(x == 3)); // violation

        boolean c = (x == 3) ? (x == 3) : (!(x == 3));  // expected 3 violations
    }

}
PS D:\CS\test> java  -jar checkstyle-10.17.0-all.jar -c config.xml  src/Test.java
Starting audit...
[ERROR] D:\CS\test\src\Test.java:4:21: Unnecessary parentheses around assignment right-hand side. [UnnecessaryParentheses]
[ERROR] D:\CS\test\src\Test.java:5:21: Unnecessary parentheses around assignment right-hand side. [UnnecessaryParentheses]
Audit done.
Checkstyle ends with 2 errors.



Describe what you expect in detail.

UnnecessaryParentheses should flag unnecessary parentheses in conditional expressions. We should add Question to the acceptable tokens or something.


@rnveach
Copy link
Contributor

rnveach commented Jul 14, 2024

Issue looks good to me.

@mahfouz72
Copy link
Member Author

please add false negative label

@romani
Copy link
Member

romani commented Jul 14, 2024

we usually place "bug" label after fix (as this label is for release notes)

@nrmancuso nrmancuso added false negative issues where check should place violations on code, but does not approved labels Jul 14, 2024
@nrmancuso nrmancuso removed their assignment Jul 14, 2024
@MohanadKh03
Copy link
Contributor

MohanadKh03 commented Sep 18, 2024

Is this still open and not assigned ?
I think I have a solution for it but not sure if precedence order would affect this solution

@romani
Copy link
Member

romani commented Sep 19, 2024

@MohanadKh03 , thanks a lot for help, you are always welcome to fix any issues.

We highly recommend (but not a mandatory requirement) for new contributors to finish one issue in. Each group "good xxxx issue" in this case contributor learning gradually how our project works, and there less likely to be failure to finish fix.

@MohanadKh03
Copy link
Contributor

@romani
I have actually reviewed some of the previous fixes in this check especially so I have a brief idea about it.
But I have some questions regarding how should the multiple violations in a single line be reported ? Like as a MSG_EXPR ?
I already have an idea about how it could be fixed so if it's possible I can raise a PR and we can discuss more details about it there ?

@romani
Copy link
Member

romani commented Sep 19, 2024

Better to discuss in PR, see you in PR

MohanadKh03 added a commit to MohanadKh03/checkstyle that referenced this issue Sep 19, 2024
MohanadKh03 added a commit to MohanadKh03/checkstyle that referenced this issue Sep 23, 2024
… conditional expressions to UnnecessaryParenthesesCheck
MohanadKh03 added a commit to MohanadKh03/checkstyle that referenced this issue Sep 24, 2024
… conditional expressions to UnnecessaryParenthesesCheck
MohanadKh03 added a commit to MohanadKh03/checkstyle that referenced this issue Oct 18, 2024
… conditional expressions to UnnecessaryParenthesesCheck
MohanadKh03 added a commit to MohanadKh03/checkstyle that referenced this issue Oct 18, 2024
… conditional expressions to UnnecessaryParenthesesCheck
MohanadKh03 added a commit to MohanadKh03/checkstyle that referenced this issue Oct 18, 2024
… conditional expressions to UnnecessaryParenthesesCheck
MohanadKh03 added a commit to MohanadKh03/checkstyle that referenced this issue Oct 18, 2024
… conditional expressions to UnnecessaryParenthesesCheck
MohanadKh03 added a commit to MohanadKh03/checkstyle that referenced this issue Oct 18, 2024
… conditional expressions to UnnecessaryParenthesesCheck
romani pushed a commit that referenced this issue Oct 18, 2024
…al expressions to UnnecessaryParenthesesCheck
@romani romani added new feature and removed bug labels Oct 18, 2024
@github-actions github-actions bot added this to the 10.18.3 milestone Oct 18, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
approved false negative issues where check should place violations on code, but does not new feature
Projects
None yet
Development

Successfully merging a pull request may close this issue.

5 participants