mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-27 12:24:44 +00:00
13 lines
275 B
Java
13 lines
275 B
Java
//CONF: lombok.noArgsConstructor.extraPrivate = false
|
|
public class NoPrivateNoArgsConstructor {
|
|
@lombok.Data
|
|
public static class NoPrivateNoArgsConstructorData {
|
|
private final int i;
|
|
}
|
|
|
|
@lombok.Value
|
|
public static class NoPrivateNoArgsConstructorValue {
|
|
int i;
|
|
}
|
|
}
|