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