How to find unused classes generated by Lombok, if Foo.builder() is not used or if the all arguments constructor is not used I would prefer to remove these annotations. But how can I find this in my code
@Builder @AllArgsConstructor @NoArgsConstructor class Foo { }
you can delombok your code.
For Intellij Check here
Next may be Sonar will also help you for some additional analysis to find used code
1.4m articles
1.4m replys
5 comments
57.0k users