Skip to content

Commit 1413741

Browse files
committed
remove manager for future refactor
1 parent c912737 commit 1413741

File tree

1 file changed

+0
-22
lines changed
  • AndroidSDKCore/src/main/java/com/leanplum/internal

1 file changed

+0
-22
lines changed

AndroidSDKCore/src/main/java/com/leanplum/internal/Request.java

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff 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-
}

0 commit comments

Comments
 (0)