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