Skip to content

Instantly share code, notes, and snippets.

@elben
Created April 17, 2010 01:52
Show Gist options
  • Save elben/369181 to your computer and use it in GitHub Desktop.
Save elben/369181 to your computer and use it in GitHub Desktop.
class OneOnly {
private static final OneOnly the_one = new OneOnly();
private OneOnly() {
}
public static get() {
return the_one;
}
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment