aboutsummaryrefslogtreecommitdiff
path: root/test/lombok/resource/after/SetterPlain.java
blob: 2570365ce39ab27bbf09b75a69e369fb3127f418 (plain)
1
2
3
4
5
6
7
8
9
10
class Setter {
	int i;
	int foo;
	public void setI(final int i) {
		this.i = i;
	}
	public void setFoo(final int foo) {
		this.foo = foo;
	}
}