blob: ceae2aac14ff28c6564cef895841608f1996d80c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
class GetterPlain {
int i;
int foo;
@java.lang.SuppressWarnings("all")
public int getI() {
return this.i;
}
@java.lang.SuppressWarnings("all")
public int getFoo() {
return this.foo;
}
}
|