| 4 | import lombok.extern.slf4j.Slf4j; |
| 5 | |
| 6 | @ToString |
| 7 | @NoArgsConstructor |
| 8 | @AllArgsConstructor |
| 9 | @Slf4j |
| 10 | @Builder |
| 11 | @Getter |
| 12 | @Setter |
| 13 | public class A { |
| 14 | |
| 15 | private int age; |
| 16 | |
| 17 | private String name; |
| 18 | |
| 19 | // public void test(){ |
| 20 | // log.info("this message is logged by lombok"); |
| 21 | // System.out.println(this.toString()); |
| 22 | // } |
| 23 | |
| 24 | } |
nothing calls this directly
no outgoing calls
no test coverage detected