-
Notifications
You must be signed in to change notification settings - Fork 6
Closed
Description
Implement an OpenRewrite recipe to automatically fix Checkstyle UpperEll violations by converting lowercase 'l' suffix in long literals to uppercase 'L'.
UpperEll Check: https://checkstyle.sourceforge.io/checks/misc/upperell.html#UpperEll .
Example
// Before
long value = 123l;
// After
long value = 123L;Tasks:
- Create UpperEll recipe class
- Add visitor to transform long literals
- Write tests using OpenRewrite test framework
- Add conditional execution (only when UpperEll check is enabled)
- Package the recipe
Metadata
Metadata
Assignees
Labels
No labels
Type
Projects
Status
Done