mirror of
https://github.com/tiennm99/lombok.git
synced 2026-09-14 14:19:35 +00:00
12 lines
192 B
Java
12 lines
192 B
Java
//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;
|
|
}
|
|
}
|