mirror of
https://github.com/tiennm99/lombok.git
synced 2026-09-15 16:19:38 +00:00
11 lines
281 B
Java
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));
|
|
}
|
|
} |