You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description:
String Concatenation can trigger useless-parenthesis warning inappropriately under the right circumstances. Code sample is below (it's meaningless code just to demonstrate the issue). PMD detects UselessParenthesis on the "alpha+bravo" piece. Interestingly, the false-positive goes away if (any of): a) remove the 'charlie' check (apparently you need the OR-operation) or b) make it [equals("ConstantString")] (apparently, has to be comparing to a variable string).
adangel
changed the title
[java] False Positive UselessParenthesis for string concatenation
[java] UselessParentheses false positive for string concatenation
Nov 6, 2020
Affects PMD Version:
6.25.0
Rule:
UselessParentheses
Description:
String Concatenation can trigger useless-parenthesis warning inappropriately under the right circumstances. Code sample is below (it's meaningless code just to demonstrate the issue). PMD detects UselessParenthesis on the "alpha+bravo" piece. Interestingly, the false-positive goes away if (any of): a) remove the 'charlie' check (apparently you need the OR-operation) or b) make it [equals("ConstantString")] (apparently, has to be comparing to a variable string).
The easy work-around is to invert the equals
Code Sample demonstrating the issue:
Expected outcome:
False-positive: PMD reports UselessParenthesis, but they cannot be removed
Running PMD through: [CLI | Ant | Maven | Gradle | Designer | Other]
Detected via Maven as well as Eclipse plugin
The text was updated successfully, but these errors were encountered: