blob: e191e5eb19146536cb1d35dadf19f3b6772017a2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
import lombok.NoArgsConstructor;
public @NoArgsConstructor(force = true) class NoArgsConstructorForce {
private final int[] i;
private final Object[] o;
private final java.util.List<?>[] fullQualifiedList;
public @java.lang.SuppressWarnings("all") @javax.annotation.Generated("lombok") @lombok.Generated NoArgsConstructorForce() {
super();
this.i = null;
this.o = null;
this.fullQualifiedList = null;
}
}
|