blob: 6488d9dc3b86d1e1febde7b5b9a5cde495a76657 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
class MultiFieldGetter {
int x;
int y;
@java.lang.SuppressWarnings("all")
@javax.annotation.Generated("lombok")
protected int getX() {
return this.x;
}
@java.lang.SuppressWarnings("all")
@javax.annotation.Generated("lombok")
protected int getY() {
return this.y;
}
}
class MultiFieldGetter2 {
int x;
int y;
@java.lang.SuppressWarnings("all")
@javax.annotation.Generated("lombok")
int getX() {
return this.x;
}
@java.lang.SuppressWarnings("all")
@javax.annotation.Generated("lombok")
int getY() {
return this.y;
}
}
|