blob: 407d41b67e84d1b4cfb3dbb5b733a91ffe3d7c69 (
plain)
1
2
3
4
5
6
7
8
9
|
class GenerateSuppressFBWarnings {
@lombok.Getter int y;
GenerateSuppressFBWarnings() {
super();
}
public @java.lang.SuppressWarnings("all") @edu.umd.cs.findbugs.annotations.SuppressFBWarnings(justification = "generated code") @javax.annotation.Generated("lombok") int getY() {
return this.y;
}
}
|