Skip to content

Commit 22aadef

Browse files
authored
Expose MultiDb API (#814)
1 parent 7957d31 commit 22aadef

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/com/google/firebase/cloud/FirestoreClient.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ public static Firestore getFirestore(FirebaseApp app) {
9494
* instance.
9595
*/
9696
@NonNull
97-
static Firestore getFirestore(FirebaseApp app, String database) {
97+
public static Firestore getFirestore(FirebaseApp app, String database) {
9898
return getInstance(app, database).firestore;
9999
}
100100

@@ -108,7 +108,7 @@ static Firestore getFirestore(FirebaseApp app, String database) {
108108
* instance.
109109
*/
110110
@NonNull
111-
static Firestore getFirestore(String database) {
111+
public static Firestore getFirestore(String database) {
112112
return getFirestore(FirebaseApp.getInstance(), database);
113113
}
114114

0 commit comments

Comments
 (0)