Files
lombok/test/transform/resource/after-ecj/WitherLegacyStar.java
T
2019-09-12 21:56:21 +02:00

11 lines
281 B
Java

import lombok.experimental.*;
class WitherLegacyStar {
@Wither int i;
WitherLegacyStar(int i) {
super();
this.i = i;
}
public @java.lang.SuppressWarnings("all") WitherLegacyStar withI(final int i) {
return ((this.i == i) ? this : new WitherLegacyStar(i));
}
}