public class Singleton { | |
private static final 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