mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-28 14:21:47 +00:00
10 lines
182 B
Java
10 lines
182 B
Java
import java.util.List;
|
|
|
|
@lombok.experimental.Builder
|
|
class BuilderSimple<T> {
|
|
private final int noshow = 0;
|
|
private final int yes;
|
|
private List<T> also;
|
|
private int $butNotMe;
|
|
}
|