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] ConstructorCallsOverridableMethod ignores abstract methods #3351

Closed
oowekyala opened this issue Jun 22, 2021 · 1 comment · Fixed by #3358
Closed

[java] ConstructorCallsOverridableMethod ignores abstract methods #3351

oowekyala opened this issue Jun 22, 2021 · 1 comment · Fixed by #3358
Labels
a:false-negative PMD doesn't flag a problematic piece of code
Milestone

Comments

@oowekyala
Copy link
Member

oowekyala commented Jun 22, 2021

Affects PMD Version: 6.35.0

Rule:

Please provide the rule name and a link to the rule documentation:
https://pmd.github.io/latest/pmd_rules_java_errorprone.html#constructorcallsoverridablemethod

Description: The rule ignores abstract methods:

<description>ignore abstract methods</description>
<expected-problems>0</expected-problems>

This looks contrary to what the rule is supposed to do.

Code Sample demonstrating the issue:

public class Foo {
    public Foo() {
        bar();
    }
    abstract void bar();
}

Expected outcome:

PMD should report a violation but doesn't. This is a false-negative.

Running PMD through: any

@oowekyala oowekyala added the a:false-negative PMD doesn't flag a problematic piece of code label Jun 22, 2021
@adangel adangel linked a pull request Jun 24, 2021 that will close this issue
4 tasks
@adangel adangel added this to the 7.0.0 milestone Jun 25, 2021
@adangel adangel mentioned this issue Jan 23, 2023
55 tasks
@adangel
Copy link
Member

adangel commented Apr 22, 2023

This has been fixed with PMD 7.0.0-rc1.

@adangel adangel closed this as completed Apr 22, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
a:false-negative PMD doesn't flag a problematic piece of code
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants