blob: 21e5fac83bfafc2ea6010dcee670406068b4f44b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
class GetterWithDollar1 {
int $i;
@java.lang.SuppressWarnings("all")
@javax.annotation.Generated("lombok")
public int get$i() {
return this.$i;
}
}
class GetterWithDollar2 {
int $i;
int i;
@java.lang.SuppressWarnings("all")
@javax.annotation.Generated("lombok")
public int get$i() {
return this.$i;
}
@java.lang.SuppressWarnings("all")
@javax.annotation.Generated("lombok")
public int getI() {
return this.i;
}
}
|