blob: be8ea17e2ad0dd46c999c9765930315a910e758f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
class ConstructorInner {
static @lombok.AllArgsConstructor(staticName = "of") class Inner {
private @java.lang.SuppressWarnings("all") Inner() {
super();
}
public static @java.lang.SuppressWarnings("all") ConstructorInner.Inner of() {
return new ConstructorInner.Inner();
}
}
ConstructorInner() {
super();
}
}
|