blob: 4f048242dc844ddd991c69a60d49269fa0a555d4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
//CONF: lombok.addNullAnnotations = spring
import lombok.With;
class WithPlain {
@lombok.With int i;
@With final int foo;
WithPlain(int i, int foo) {
this.i = i;
this.foo = foo;
}
}
|