mirror of
https://github.com/tiennm99/lombok.git
synced 2026-09-13 20:20:46 +00:00
9 lines
276 B
Java
9 lines
276 B
Java
class GenerateSuppressFBWarnings {
|
|
@lombok.Getter int y;
|
|
GenerateSuppressFBWarnings() {
|
|
super();
|
|
}
|
|
public @java.lang.SuppressWarnings("all") @edu.umd.cs.findbugs.annotations.SuppressFBWarnings(justification = "generated code") int getY() {
|
|
return this.y;
|
|
}
|
|
} |