blob: 7ba02422197d4cf56c8a61141e0995fb292fb5c3 (
plain)
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") @javax.annotation.Generated("lombok") int getTest() {
return this.test;
}
}
|