Skip to content

Instantly share code, notes, and snippets.

@raulmontemayor
Created September 12, 2012 21:10
Show Gist options
  • Save raulmontemayor/3709962 to your computer and use it in GitHub Desktop.
Save raulmontemayor/3709962 to your computer and use it in GitHub Desktop.
public class Singleton {
private static Singleton INSTANCE = new Singleton();
private Singleton() {}
public static Singleton getInstance() {
return INSTANCE;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment