-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
[java] UselessParentheses false positive with boolean operators #1918
Comments
Since However, in terms of readability, it's maybe better to allow these parentheses. Maybe we should give this rule a property to enable/disable something like a "strict" mode? |
Fixed with PMD 7 |
Where is PMD7? Latest seems 6.42.0 https://mvnrepository.com/artifact/net.sourceforge.pmd/pmd |
@blacelle PMD 7 is still in development, you can get daily snapshots from sourceforge and the sonatype snapshot repository. The bug has been fixed in the PMD 7 development branch, but may still be present in PMD 6. I'll reopen the issue with the proper label (we didn't have this procedure yet when this bug was closed). |
This has been fixed with PMD 7.0.0-rc1. |
Affects PMD Version: 3.12.0
Rule: UselessParentheses
Description:
I have the condition if(a || b || (c & d) || e)
Then I get Useless parentheses violation message.
Code Sample demonstrating the issue:
Running PMD through: Maven
Java JDK 8
The text was updated successfully, but these errors were encountered: