mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-28 08:21:35 +00:00
3edac64911
Now generating checkerframework `@Pure` instead of `@SideEffectFree` where appropriate.
12 lines
239 B
Java
12 lines
239 B
Java
//CONF: checkerframework = 4.0
|
|
import lombok.Data;
|
|
import lombok.experimental.Accessors;
|
|
import lombok.With;
|
|
|
|
@Data @Accessors(chain = true)
|
|
class CheckerFrameworkBasic {
|
|
@With private final int x;
|
|
private final int y;
|
|
private int z;
|
|
}
|