mirror of
https://github.com/tiennm99/lombok.git
synced 2026-09-13 14:20:00 +00:00
14 lines
310 B
Java
14 lines
310 B
Java
class PlaceFillerToMakeSurePositionIsRelevant {
|
|
PlaceFillerToMakeSurePositionIsRelevant() {
|
|
super();
|
|
}
|
|
}
|
|
@lombok.Getter() class GetterOnMethodErrors {
|
|
private int test;
|
|
GetterOnMethodErrors() {
|
|
super();
|
|
}
|
|
public @java.lang.SuppressWarnings("all") int getTest() {
|
|
return this.test;
|
|
}
|
|
} |