aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-delombok/AccessorsMakeFinal.java
blob: d88e861609834c354cb651be30ece151e7d62777 (plain)
1
2
3
4
5
6
7
8
9
10
11
class AccessorsMakeFinal1 {
	private String test;
	/**
	 * @return {@code this}.
	 */
	@java.lang.SuppressWarnings("all")
	public final AccessorsMakeFinal1 test(final String test) {
		this.test = test;
		return this;
	}
}