Closed mches closed 1 month ago
UnnecessaryModifier misses the opportunity to remove redundant modifiers from nested annotations, enums
UnnecessaryModifier
e.g.
public interface Parent { public static abstract @interface MyAnnotation {} public static enum MyEnum {} }
and
public @interface Parent { public static abstract @interface MyAnnotation {} public static enum MyEnum {} }
Thanks for the report and the fix. This has been released in Cleanthat 1.22 ; it shall be available in m2central within minutes/hours.
UnnecessaryModifier
misses the opportunity to remove redundant modifiers from nested annotations, enumse.g.
and