mirror of
https://github.com/tiennm99/lombok.git
synced 2026-08-01 22:22:27 +00:00
8 lines
190 B
Java
8 lines
190 B
Java
@lombok.AllArgsConstructor class ConstructorsConfiguration {
|
|
int x;
|
|
public @java.lang.SuppressWarnings("all") ConstructorsConfiguration(final int x) {
|
|
super();
|
|
this.x = x;
|
|
}
|
|
}
|