public class Context {

 
private Context() {
  }

  private static class SingletonHolder {
  
private static final Context INSTANCE = new Context();
 
}
 
  public static Context getInstance() {
    return SingletonHolder.INSTANCE;
  }
}

Leave a Reply

Your email address will not be published. Required fields are marked *