mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-28 20:21:01 +00:00
9 lines
119 B
Java
9 lines
119 B
Java
import lombok.experimental.*;
|
|
class WitherLegacyStar {
|
|
@Wither int i;
|
|
|
|
WitherLegacyStar(int i) {
|
|
this.i = i;
|
|
}
|
|
}
|