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] ImmutableField: False positive with lombok (fixes #4254) #4474

Merged
merged 3 commits into from
Apr 18, 2023

Conversation

PimvanderLoos
Copy link
Contributor

Describe the PR

This PR fixes a false positive for the ImmutableField rule when it is annotated with Lombok's @Setter annotation, which adds a generated setter for that specific field to the class.

Previously, the setter annotation (and similar ones) were only supported when used on the class level.

Related issues

Ready?

  • Added unit tests for fixed bug/feature
  • Passing all unit tests
  • Complete build ./mvnw clean verify passes (checked automatically by github actions)
  • Added (in-code) documentation (if needed)

Copy link
Member

@adangel adangel left a comment

Choose a reason for hiding this comment

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

Thanks for the PR.

This is unfortunately not so simple:

  • with [java] ImmutableField - deprecate property ignoredAnnotations #4175 we actually deprecated the property. Unfortunately this didn't make it into the pmd/7.0.x branch back then. But end result is: this property shouldn't exist at all anymore.
  • since we currently have some other lombok annotations hardcoded in a separate list (see "INVALIDATING_CLASS_ANNOT"), we can maybe do the same for these special cases and add a "INVALIDATING_FIELD_ANNOT" list.
  • end result should be - there is no property "ignoredAnnotations" for this rule anymore, since the property is deprecated.

@ghost
Copy link

ghost commented Apr 16, 2023

1 Message
📖 Compared to master:
This changeset changes 0 violations,
introduces 0 new violations, 0 new errors and 0 new configuration errors,
removes 0 violations, 13 errors and 0 configuration errors.
Full report

Generated by 🚫 Danger

@PimvanderLoos
Copy link
Contributor Author

Hey, thank you for your feedback!

Funnily enough, I had initially added the INVALIDATING_FIELD_ANNOT field (with the exact same name and everything), so it was just a few undo's away.

I've now pushed a commit to apply your feedback.


However, I have one question regarding the @Getter annotation.

I think that a field (or class) being annotated with the @Getter annotation should not be a reason to exempt from the ImmutableField rule. After all, it only generates a getter, meaning the field can still be marked final.

I have added the annotation to INVALIDATING_FIELD_ANNOT because it is also in INVALIDATING_CLASS_ANNOT, ensuring the behavior is consistent for the annotation regardless of its location in the source.

Copy link
Member

@adangel adangel left a comment

Choose a reason for hiding this comment

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

Thanks for the update, looks good. I'll merge it tomorrow.

However, I have one question regarding the @Getter annotation.

I think that a field (or class) being annotated with the @Getter
annotation should not be a reason to exempt from the ImmutableField
rule. After all, it only generates a getter, meaning the field can
still be marked final.

I have added the annotation to INVALIDATING_FIELD_ANNOT because it is
also in INVALIDATING_CLASS_ANNOT, ensuring the behavior is consistent
for the annotation regardless of its location in the source.

I'd keep it for now as it is to be consistent.
I think, you are right, that a field, that's only annotated with @Getter could be made final - but in real code, there probably a bit more ongoing with that field (e.g. some other method will set it to some value) - and then it can't be immutable anyway. A field, that is only annotated with @Getter and has no write access anywhere is useless, as it will always return the initial value or null - but true, in that case, it could be final...

@adangel adangel self-assigned this Apr 17, 2023
@adangel adangel added this to the 7.0.0 milestone Apr 18, 2023
@adangel adangel merged commit 66ddd56 into pmd:master Apr 18, 2023
adangel added a commit that referenced this pull request Apr 18, 2023
adangel added a commit that referenced this pull request Apr 18, 2023
[java] ImmutableField: False positive with lombok (fixes #4254) #4474
adangel added a commit to adangel/pmd that referenced this pull request Apr 20, 2023
This fixes a potential false negative when @Getter is used.
See discussion on pmd#4474
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[java] ImmutableField - false positive with Lombok @Setter
2 participants