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