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