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

[apex] ExcessivePublicCount doesn't consider inner classes correctly #4509

Closed
adangel opened this issue Apr 27, 2023 · 0 comments · Fixed by #4501
Closed

[apex] ExcessivePublicCount doesn't consider inner classes correctly #4509

adangel opened this issue Apr 27, 2023 · 0 comments · Fixed by #4501
Labels
a:false-positive PMD flags a piece of code that is not problematic
Milestone

Comments

@adangel
Copy link
Member

adangel commented Apr 27, 2023

Affects PMD Version: 6.x

Rule: ExcessivePublicCount

Description:

The rule counts all methods of a file regardless whether they belong to the same class or not. If you have a file with multiple (inner) classes, then all classes are considered as a single class. This is wrong - the inner classes should be considered separate.

This bug has been fixed with PMD 7.0.0 already.

Found via #3123.

Code Sample demonstrating the issue:

public virtual class OuterClass {
  public virtual class InnerClass1 {
    public virtual void method1() {}
  }

  public virtual class InnerClass2 {
    public virtual void method1() {}
  }

}

Expected outcome:
PMD should count 1 method for each class. But currently, it counts 2 methods for OuterClass, which is wrong.

@adangel adangel added the a:false-positive PMD flags a piece of code that is not problematic label Apr 27, 2023
@adangel adangel added this to the 7.0.0 milestone Apr 27, 2023
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.

1 participant