[java] Fix #6692: ForLoopCanBeForeach detect i = i + 1 update form#6727
Merged
UncleOwen merged 4 commits intoMay 31, 2026
Merged
Conversation
1006269 to
9a5eb2d
Compare
Contributor
|
Compared to main: (comment created at 2026-05-31 07:51:25+00:00 for 0f36c16) |
UncleOwen
requested changes
May 30, 2026
UncleOwen
left a comment
Member
There was a problem hiding this comment.
I've left some suggestions. Otherwise, this looks good!
Contributor
Author
|
Thank you for the review! I've addressed all the comments:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Describe the PR
Fix a false-negative in the ForLoopCanBeForeach rule where a for loop using i = i + 1 (or i = 1 + i) as the update expression was not detected as convertible to a foreach loop, even though it is semantically identical to i++ or i += 1.
Added a new helper method asIEqualIPlusOne to handle the direct assignment pattern.
Related issues
i += 1andi = i + 1update forms #6692Ready?
./mvnw clean verifypasses (checked automatically by github actions)