miha-x64
03/30/2017, 3:09 PMpublic final class Foo {
@NotNull private static final String bar = "bar";
public static final Foo INSTANCE;
static { new Foo(); }
private Foo() {
INSTANCE = (Foo)this;
bar = "bar";
}
@NotNull public final String getBar() {
return bar;
}
}