blob: 3ca138448891c4d4801987520bec6592eb1cdb2d (
plain)
1
2
3
4
5
6
7
|
@lombok.AllArgsConstructor class ConstructorsConfiguration {
int x;
public @java.lang.SuppressWarnings("all") @javax.annotation.Generated("lombok") ConstructorsConfiguration(final int x) {
super();
this.x = x;
}
}
|