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] SimplifyBooleanReturns should consider operator precedence #3786

Closed
oowekyala opened this issue Feb 16, 2022 · 1 comment · Fixed by #3795
Closed

[java] SimplifyBooleanReturns should consider operator precedence #3786

oowekyala opened this issue Feb 16, 2022 · 1 comment · Fixed by #3795
Labels
a:false-positive PMD flags a piece of code that is not problematic
Milestone

Comments

@oowekyala
Copy link
Member

Affects PMD Version: 7.0.0

Rule: https://pmd.github.io/latest/pmd_rules_java_design.html#simplifybooleanreturns

Description: SimplifyBooleanReturns suggests a code transformation that makes the code harder to read. This happens when transforming an if/else statement to single-return form requires introducing parentheses because of operator precedence. I think the rule should only report if the conversion would not require introducing parentheses.

Code Sample demonstrating the issue:

private boolean isFactoryMethod(ASTMethodCall expr) {
        if (expr.getQualifier() != null) { // nopmd
            return typeEndsWith(expr.getQualifier(), "Factory")
                || nameEndsWith(expr.getQualifier());
        }
        return false;
}

when converted this would be

    private boolean isFactoryMethod(ASTMethodCall expr) {
        return expr.getQualifier() != null && (typeEndsWith(expr.getQualifier(), "Factory")
            || nameEndsWith(expr.getQualifier()));
    }

which is ugly. Using an if-else statement allows avoiding parentheses.

see https://github.com/pmd/pmd/runs/5209308795?check_suite_focus=true

Expected outcome: no violation. That's a false positive.

Running PMD through: [CLI | Ant | Maven | Gradle | Designer | Other]

@oowekyala oowekyala added the a:false-positive PMD flags a piece of code that is not problematic label Feb 16, 2022
@oowekyala oowekyala added this to the 7.0.0 milestone Feb 16, 2022
oowekyala added a commit to oowekyala/pmd that referenced this issue Feb 16, 2022
oowekyala added a commit to oowekyala/pmd that referenced this issue Feb 18, 2022
Node matchers
@adangel adangel linked a pull request Feb 25, 2022 that will close this issue
4 tasks
adangel added a commit that referenced this issue Feb 25, 2022
oowekyala:issue3786-simplify-boolean-returns

[java] Fix #3786 - make SimplifyBooleanReturns consider parentheses.
#3795
@adangel
Copy link
Member

adangel commented Feb 25, 2022

Closing this as done, as this is PMD7 only and fixed on PMD7.

@adangel adangel closed this as completed Feb 25, 2022
@adangel adangel mentioned this issue Jan 23, 2023
55 tasks
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.

2 participants