aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-delombok/GetterPlain.java
blob: 1cdfef8f0dc198efa6fd1ff4b9bc5e83123ca1c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class GetterPlain {
	int i;
	int foo;
	@java.lang.SuppressWarnings("all")
	@javax.annotation.Generated("lombok")
	public int getI() {
		return this.i;
	}
	@java.lang.SuppressWarnings("all")
	@javax.annotation.Generated("lombok")
	public int getFoo() {
		return this.foo;
	}
}