We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c8d5ab commit cb8321bCopy full SHA for cb8321b
WordPressUtils/src/main/java/org/wordpress/android/util/SystemServiceFactory.java
@@ -2,16 +2,13 @@
2
3
import android.content.Context;
4
5
-import org.wordpress.android.util.AppLog.T;
6
-
7
public class SystemServiceFactory {
8
- public static SystemServiceFactoryAbstract sFactory;
+ private static SystemServiceFactoryAbstract sFactory;
9
10
public static Object get(Context context, String name) {
11
if (sFactory == null) {
12
sFactory = new SystemServiceFactoryDefault();
13
}
14
- AppLog.v(T.UTILS, "instantiate SystemService using sFactory: " + sFactory.getClass());
15
return sFactory.get(context, name);
16
17
0 commit comments