aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-delombok/NoArgsConstructorForce.java
blob: 3336ca1962e61ec9348bbec9a648bf63caa1b411 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
public class NoArgsConstructorForce {
	private final int[] i;
	private final Object[] o;
	private final java.util.List<?>[] fullQualifiedList;
	
	@java.lang.SuppressWarnings("all")
	public NoArgsConstructorForce() {
		this.i = null;
		this.o = null;
		this.fullQualifiedList = null;
	}
}