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