aboutsummaryrefslogtreecommitdiff
path: root/test/delombok/resource/after/GetterPlain.java
blob: 5e8cc965b40d799493457278f19000b4f25f5650 (plain)
1
2
3
4
5
6
7
8
9
10
class GetterPlain {
	int i;
	int foo;
	public int getI() {
		return i;
	}
	public int getFoo() {
		return foo;
	}
}