aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/before/ToStringWithConstantRefInOf.java
blob: 6246dcaf27e36988c0bc598a3e38eb7fcd8bd61c (plain)
1
2
3
4
5
6
7
8
9
10
//skip compare contents
import lombok.ToString;

@ToString(of = ToStringWithConstantRefInOf.FIELD_NAME)
public class ToStringWithConstantRefInOf {
	static final String FIELD_NAME = "id";
	private String id;
	private int whatever;
}