Skip to content

Instantly share code, notes, and snippets.

@linnykoleh
Created July 18, 2017 08:53
Show Gist options
  • Save linnykoleh/41f904bcb3f8fa234f5674d70ca80515 to your computer and use it in GitHub Desktop.
Save linnykoleh/41f904bcb3f8fa234f5674d70ca80515 to your computer and use it in GitHub Desktop.
public class StaticSingleton {
private static StaticSingleton instance = new StaticSingleton();
private StaticSingleton(){
}
public static StaticSingleton getInstance(){
return instance;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment