1 2 3 4 5 6 7 8 9 10 11 12 13 14
class PlaceFillerToMakeSurePositionIsRelevant { PlaceFillerToMakeSurePositionIsRelevant() { super(); } } @lombok.Getter() class GetterOnMethodErrors { private int test; GetterOnMethodErrors() { super(); } public @java.lang.SuppressWarnings("all") int getTest() { return this.test; } }