1 2 3 4 5 6 7 8 9 10 11
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)); } }