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 cc5108a commit 3016467Copy full SHA for 3016467
src/main/java/com/google/firebase/remoteconfig/FirebaseRemoteConfig.java
@@ -105,14 +105,10 @@ FirebaseRemoteConfigClient getRemoteConfigClient() {
105
return remoteConfigClient;
106
}
107
108
- private static FirebaseRemoteConfig fromApp(final FirebaseApp app) {
109
- return new FirebaseRemoteConfig(app);
110
- }
111
-
112
private static class FirebaseRemoteConfigService extends FirebaseService<FirebaseRemoteConfig> {
113
114
FirebaseRemoteConfigService(FirebaseApp app) {
115
- super(SERVICE_ID, FirebaseRemoteConfig.fromApp(app));
+ super(SERVICE_ID, new FirebaseRemoteConfig(app));
116
117
118
@Override
0 commit comments