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

JavadocMethodCheck: removed unnecessary tokens from acceptable #15687

Merged
merged 1 commit into from
Oct 26, 2024

Conversation

rnveach
Copy link
Contributor

@rnveach rnveach commented Sep 21, 2024

Unrelated to #15683 but noticed when looking at it and the code.

We set required tokens in this Check which aren't needed. With them removed, we are able to remove a bit of code which was blocking violations on those tokens.

Tokens to remove from acceptable:
TokenTypes.CLASS_DEF,
TokenTypes.ENUM_DEF,
TokenTypes.INTERFACE_DEF,
TokenTypes.RECORD_DEF

Regression: https://rveach.no-ip.org/checkstyle/regression/4/
No differences.

Migration note:
Remove above tokens from config if used.

@rnveach rnveach force-pushed the help_15683_excess_tokens branch from 5f0dc73 to ad53809 Compare September 21, 2024 23:50
@romani
Copy link
Member

romani commented Sep 22, 2024

we are able to remove a bit of code which was blocking violations on those tokens.

so there should be changes in behavior, right ?

Copy link
Member

@romani romani left a comment

Choose a reason for hiding this comment

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

update is ok,
but we need to agree that it is breaking changes.

@@ -5,7 +5,7 @@
accessModifiers = (default)public, protected, package, private
allowMissingParamTags = (default)false
allowMissingReturnTag = (default)false
tokens = METHOD_DEF, CTOR_DEF, ANNOTATION_FIELD_DEF, COMPACT_CTOR_DEF, RECORD_DEF, CLASS_DEF
tokens = METHOD_DEF, CTOR_DEF, ANNOTATION_FIELD_DEF, COMPACT_CTOR_DEF
Copy link
Member

Choose a reason for hiding this comment

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

this means breaking compatibility for users.
this check is very old, so users might have all this tokens.

no good reason to have such tokens, but it will still be compatibility issue - exception in run time after upgrade of checkstyle.

Copy link
Member

Choose a reason for hiding this comment

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

@rnveach , are we in agreement ?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

I don't really see this as a breaking change, but you will do what you want anyways.

Copy link
Member

@nrmancuso nrmancuso left a comment

Choose a reason for hiding this comment

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

Item:

@nrmancuso nrmancuso assigned romani and unassigned nrmancuso Oct 12, 2024
@nrmancuso
Copy link
Member

@rnveach thanks for catching this and cleaning it up!

@romani romani assigned rnveach and unassigned romani Oct 12, 2024
@rnveach rnveach assigned romani and unassigned rnveach Oct 12, 2024
@romani romani changed the title removed unnecessary tokens from JavadocMethodCheck JavadocMethodCheck: removed unnecessary tokens from acceptable Oct 12, 2024
@romani
Copy link
Member

romani commented Oct 12, 2024

We have bunch bug fixes already merged, but not released.
We agreed to release bug fixes before breaking compatibility, to increase feature delivery without breaking changes.
But this change will be merged right after release.

@romani romani merged commit ab10c20 into checkstyle:master Oct 26, 2024
112 checks passed
@github-actions github-actions bot added this to the 10.19.1 milestone Oct 26, 2024
@rnveach rnveach deleted the help_15683_excess_tokens branch October 26, 2024 15:31
dongjoon-hyun pushed a commit to apache/spark that referenced this pull request Nov 4, 2024
### What changes were proposed in this pull request?

This PR proposes to upgrade checkstyle to 10.20.0

### Why are the changes needed?

To pick up bug fixes made, e.g., checkstyle/checkstyle#15687
See also https://github.com/checkstyle/checkstyle/releases

### Does this PR introduce _any_ user-facing change?

No, dev-only.

### How was this patch tested?

Manually by:

```bash
./dev/lint-java
```

### Was this patch authored or co-authored using generative AI tooling?

No.

Closes #48752 from HyukjinKwon/SPARK-50218.

Authored-by: Hyukjin Kwon <[email protected]>
Signed-off-by: Dongjoon Hyun <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants