We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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:
pmd/pmd-java/src/test/resources/net/sourceforge/pmd/lang/java/rule/errorprone/xml/ConstructorCallsOverridableMethod.xml
Lines 133 to 134 in b1e7bc1
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
The text was updated successfully, but these errors were encountered:
ConstructorCallsOverridableMethod: Stop ignoring abstract methods - fix
a3c5911
pmd#3351
[doc] Update release notes for pmd 7 (#3351)
ca691de
[java] ConstructorCallsOverridableMethod - mention #3351 in tests
a2e7615
This has been fixed with PMD 7.0.0-rc1.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
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:
pmd/pmd-java/src/test/resources/net/sourceforge/pmd/lang/java/rule/errorprone/xml/ConstructorCallsOverridableMethod.xml
Lines 133 to 134 in b1e7bc1
This looks contrary to what the rule is supposed to do.
Code Sample demonstrating the issue:
Expected outcome:
PMD should report a violation but doesn't. This is a false-negative.
Running PMD through: any
The text was updated successfully, but these errors were encountered: