blob: e78ee55c226f664d40b90e35899a8c176819f6ca (
plain)
1
2
3
4
5
6
7
8
9
|
//VERSION 7:
class GenerateSuppressFBWarnings {
int y;
@java.lang.SuppressWarnings("all")
@edu.umd.cs.findbugs.annotations.SuppressFBWarnings(justification = "generated code")
public int getY() {
return this.y;
}
}
|