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

[java] UselessParentheses false positive for string concatenation #2739

Closed
jbennett2091 opened this issue Aug 25, 2020 · 1 comment · Fixed by #2900
Closed

[java] UselessParentheses false positive for string concatenation #2739

jbennett2091 opened this issue Aug 25, 2020 · 1 comment · Fixed by #2900
Labels
a:false-positive PMD flags a piece of code that is not problematic
Milestone

Comments

@jbennett2091
Copy link

jbennett2091 commented Aug 25, 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:

	public static boolean isTest(
		final String alpha,
		final String bravo)
	{
		return "Charlie".equals(alpha) || (alpha + bravo).equals(alpha);
	}

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

@jbennett2091 jbennett2091 added the a:bug PMD crashes or fails to analyse a file. label Aug 25, 2020
@adangel adangel added a:false-positive PMD flags a piece of code that is not problematic and removed a:bug PMD crashes or fails to analyse a file. labels Sep 17, 2020
@oowekyala oowekyala added this to the 7.0.0 milestone Sep 28, 2020
@adangel adangel changed the title [java] False Positive UselessParenthesis for string concatenation [java] UselessParentheses false positive for string concatenation Nov 6, 2020
@adangel adangel linked a pull request Nov 6, 2020 that will close this issue
4 tasks
@adangel
Copy link
Member

adangel commented Nov 6, 2020

Fixed with PMD 7

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
a:false-positive PMD flags a piece of code that is not problematic
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants