Guest User

Untitled

a guest
Nov 18th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. public class SingleInstance {
  2.  
  3. private static class InstanceHolder {
  4. public static final SingleInstance instance = new SingleInstance();
  5. }
  6.  
  7. public static SingleInstance getInstance() {
  8. return InstanceHolder.instance;
  9. }
  10. }
Add Comment
Please, Sign In to add comment