mirror of
https://github.com/tiennm99/lombok.git
synced 2026-08-24 04:28:27 +00:00
9 lines
185 B
Java
9 lines
185 B
Java
class ConstructorsConfiguration {
|
|
int x;
|
|
@java.lang.SuppressWarnings("all")
|
|
@javax.annotation.Generated("lombok")
|
|
public ConstructorsConfiguration(final int x) {
|
|
this.x = x;
|
|
}
|
|
}
|