Skip to content

Instantly share code, notes, and snippets.

public Singleton {
private Singletn(){}
private static Singleton INSTANCE = new Singleton();
public static Singleton newInstance(){
return INSTANCE;
}
}