blob: 50ca1c3300c75de683c358395b4de85188fc94f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
class GetterLazyGenerics<E> {
@lombok.Getter(lazy=true)
private final E field = getAny();
@lombok.Getter(lazy=true)
private final long field2 = System.currentTimeMillis();
public static <E> E getAny() {
return null;
}
}
|