File tree Expand file tree Collapse file tree 1 file changed +0
-22
lines changed
AndroidSDKCore/src/main/java/com/leanplum/internal Expand file tree Collapse file tree 1 file changed +0
-22
lines changed Original file line number Diff line number Diff line change @@ -1019,25 +1019,3 @@ public static String getResponseError(JSONObject response) {
10191019 }
10201020 }
10211021}
1022-
1023- class RequestManager
1024- {
1025- private static RequestManager single_instance = null ;
1026-
1027- // variable of type String
1028- public String s ;
1029-
1030- // private constructor restricted to this class itself
1031- private RequestManager () {
1032- s = "Hello I am a string part of Singleton class" ;
1033- }
1034-
1035- // static method to create instance of Singleton class
1036- public static RequestManager getInstance ()
1037- {
1038- if (single_instance == null )
1039- single_instance = new RequestManager ();
1040-
1041- return single_instance ;
1042- }
1043- }
You can’t perform that action at this time.
0 commit comments