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

ForbiddenMethodCall - Handle sequence of overridden methods #6478

Merged
merged 3 commits into from Sep 12, 2023

Conversation

atulgpt
Copy link
Contributor

@atulgpt atulgpt commented Sep 11, 2023

Use overriddenTreeUniqueAsSequence of overridden methods which gives all the methods even for the parent classes

Fixes #6474

foundDescriptors.flatMap {
it.overriddenTreeUniqueAsSequence(true).toList()
}
}?.toSet() ?: return
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We could avoid this call to toSet if we create sets directly instead of lists inside the let.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Update the code

@BraisGabin BraisGabin added the pick request Marker for PRs that should be ported to the 1.0 release branch label Sep 12, 2023
@BraisGabin BraisGabin added this to the 2.0.0 milestone Sep 12, 2023
Co-authored-by: Brais Gabín <braisgabin@gmail.com>
@BraisGabin BraisGabin merged commit c64d549 into detekt:main Sep 12, 2023
21 checks passed
@atulgpt atulgpt deleted the fixes/6474/use-all-overridden-methods branch September 12, 2023 18:50
@cortinico cortinico changed the title Handle sequence of overridden methods ForbiddenMethodCall - Handle sequence of overridden methods Oct 26, 2023
cortinico pushed a commit that referenced this pull request Oct 30, 2023
* Handle sequence of overridden methods

* Apply suggestions from code review

Co-authored-by: Brais Gabín <braisgabin@gmail.com>

* Create set inside let instead of using `toSet()`

---------

Co-authored-by: Brais Gabín <braisgabin@gmail.com>
mgroth0 pushed a commit to mgroth0/detekt that referenced this pull request Feb 11, 2024
* Handle sequence of overridden methods

* Apply suggestions from code review

Co-authored-by: Brais Gabín <braisgabin@gmail.com>

* Create set inside let instead of using `toSet()`

---------

Co-authored-by: Brais Gabín <braisgabin@gmail.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
pick request Marker for PRs that should be ported to the 1.0 release branch rules
Projects
None yet
Development

Successfully merging this pull request may close these issues.

ForbiddenMethodCall does not trigger on default interface implementations
3 participants