Skip to content

Commit 15c55a9

Browse files
committed
remove test code
1 parent 6b48a68 commit 15c55a9

File tree

1 file changed

+2
-16
lines changed

1 file changed

+2
-16
lines changed

android/src/main/java/io/fullstack/firestack/FirestackAuth.java

+2-16
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
import com.google.firebase.auth.FirebaseUser;
3030
import com.google.firebase.auth.GetTokenResult;
3131
import com.google.firebase.auth.GoogleAuthProvider;
32-
import com.google.firebase.remoteconfig.FirebaseRemoteConfig;
32+
3333

3434
@SuppressWarnings("ThrowableResultOfMethodCallIgnored")
3535
class FirestackAuthModule extends ReactContextBaseJavaModule {
@@ -41,7 +41,6 @@ class FirestackAuthModule extends ReactContextBaseJavaModule {
4141

4242
// private Context context;
4343
private ReactContext mReactContext;
44-
private FirebaseRemoteConfig mRemoteConfig;
4544
private FirebaseAuth mAuth;
4645
private FirebaseApp app;
4746
private FirebaseUser user;
@@ -52,20 +51,7 @@ public FirestackAuthModule(ReactApplicationContext reactContext) {
5251
// this.context = reactContext;
5352
mReactContext = reactContext;
5453

55-
mRemoteConfig.fetch()
56-
.addOnCompleteListener(new OnCompleteListener<Void>() {
57-
@Override
58-
public void onComplete(Task<Void> task) {
59-
if (task.isSuccessful()) {
60-
// task successful. Activate the fetched data
61-
mRemoteConfig.activateFetched();
62-
63-
} else {
64-
//task failed
65-
}
66-
}
67-
});
68-
Log.d(TAG, "New FirestackAuth instance");
54+
Log.d(TAG, "New FirestackAuth instance");
6955
}
7056

7157
@Override

0 commit comments

Comments
 (0)