@@ -114,9 +114,10 @@ private static FirebaseApp getDefaultFirebaseApp() {
114
114
}
115
115
116
116
/**
117
- * Returns the default {@link FirebaseFirestore} instance associated with the default {@link
118
- * FirebaseApp}. Returns the same instance for all invocations. If no instance exists, initializes
119
- * a new instance with default settings.
117
+ * Returns the default {@link FirebaseFirestore} instance for the default {@link FirebaseApp}.
118
+ *
119
+ * <p>Returns the same instance for all invocations. If no instance exists, initializes a new
120
+ * instance with default settings.
120
121
*
121
122
* @returns The {@link FirebaseFirestore} instance.
122
123
*/
@@ -126,9 +127,10 @@ public static FirebaseFirestore getInstance() {
126
127
}
127
128
128
129
/**
129
- * Returns the default {@link FirebaseFirestore} instance that is associated with the provided
130
- * {@link FirebaseApp}. For a given {@link FirebaseApp}, invocation always returns the same
131
- * instance. If no instance exists, initializes a new instance with default settings.
130
+ * Returns the default {@link FirebaseFirestore} instance for the provided {@link FirebaseApp}.
131
+ *
132
+ * <p>For a given {@link FirebaseApp}, invocation always returns the same instance. If no instance
133
+ * exists, initializes a new instance with default settings.
132
134
*
133
135
* @param app - The {@link FirebaseApp} instance that the returned {@link FirebaseFirestore}
134
136
* instance is associated with.
@@ -140,9 +142,10 @@ public static FirebaseFirestore getInstance(@NonNull FirebaseApp app) {
140
142
}
141
143
142
144
/**
143
- * Returns the {@link FirebaseFirestore} instance that is associated with the default {@link
144
- * FirebaseApp}. Returns the same instance for all invocations given the same database parameter.
145
- * If no instance exists, initializes a new instance with default settings.
145
+ * Returns the {@link FirebaseFirestore} instance for the default {@link FirebaseApp}.
146
+ *
147
+ * <p>Returns the same instance for all invocations given the same database parameter. If no
148
+ * instance exists, initializes a new instance with default settings.
146
149
*
147
150
* @param database - The name of database.
148
151
* @returns The {@link FirebaseFirestore} instance.
@@ -153,10 +156,10 @@ public static FirebaseFirestore getInstance(@NonNull String database) {
153
156
}
154
157
155
158
/**
156
- * Returns the {@link FirebaseFirestore} instance that is associated with the provided {@link
157
- * FirebaseApp}. Returns the same instance for all invocations given the same {@link FirebaseApp}
158
- * and database parameter. If no instance exists, initializes a new instance with default
159
- * settings.
159
+ * Returns the {@link FirebaseFirestore} instance for the provided {@link FirebaseApp}.
160
+ *
161
+ * <p>Returns the same instance for all invocations given the same {@link FirebaseApp} and
162
+ * database parameter. If no instance exists, initializes a new instance with default settings.
160
163
*
161
164
* @param app - The {@link FirebaseApp} instance that the returned {@link FirebaseFirestore}
162
165
* instance is associated with.
0 commit comments