You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is an existing method named getSimpleName defined in one of the classes. Update other classes that use similar methods like getShortName for obtaining the short name in quick fixes to instead use this getSimpleName method.
Additionally, refactor any classes that are still using the pattern annotationName.substring(annotationName.lastIndexOf('.') + 1) to extract the short name, so they also utilize the getSimpleName method.
The text was updated successfully, but these errors were encountered:
mrglavas
changed the title
Reduce the Code Duplication in Short names for Quick fixes
LSP4Jakarta: Reduce the Code Duplication in Short names for Quick fixes
Dec 2, 2024
There is an existing method named
getSimpleName
defined in one of the classes. Update other classes that use similar methods likegetShortName
for obtaining the short name in quick fixes to instead use thisgetSimpleName
method.Additionally, refactor any classes that are still using the pattern
annotationName.substring(annotationName.lastIndexOf('.') + 1)
to extract the short name, so they also utilize thegetSimpleName
method.The text was updated successfully, but these errors were encountered: