blob: d0a786dbbdd63f16cdd7f6c257152dffbf9be261 (
plain)
1
2
3
4
5
6
7
8
9
|
import java.util.List;
@lombok.Builder(access = lombok.AccessLevel.PROTECTED)
class BuilderSimple<T> {
private final int noshow = 0;
private final int yes;
private List<T> also;
private int $butNotMe;
}
|