@@ -117,7 +117,7 @@ private static FirebaseApp getDefaultFirebaseApp() {
117
117
* Returns the default {@link FirebaseFirestore} instance for the default {@link FirebaseApp}.
118
118
*
119
119
* <p>Returns the same instance for all invocations. If no instance exists, initializes a new
120
- * instance with default settings .
120
+ * instance.
121
121
*
122
122
* @returns The {@link FirebaseFirestore} instance.
123
123
*/
@@ -130,9 +130,9 @@ public static FirebaseFirestore getInstance() {
130
130
* Returns the default {@link FirebaseFirestore} instance for the provided {@link FirebaseApp}.
131
131
*
132
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 .
133
+ * exists, initializes a new instance.
134
134
*
135
- * @param app - The {@link FirebaseApp} instance that the returned {@link FirebaseFirestore}
135
+ * @param app The {@link FirebaseApp} instance that the returned {@link FirebaseFirestore}
136
136
* instance is associated with.
137
137
* @returns The {@link FirebaseFirestore} instance.
138
138
*/
@@ -145,9 +145,9 @@ public static FirebaseFirestore getInstance(@NonNull FirebaseApp app) {
145
145
* Returns the {@link FirebaseFirestore} instance for the default {@link FirebaseApp}.
146
146
*
147
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 .
148
+ * instance exists, initializes a new instance.
149
149
*
150
- * @param database - The name of database.
150
+ * @param database The database ID .
151
151
* @returns The {@link FirebaseFirestore} instance.
152
152
*/
153
153
@ NonNull
@@ -159,11 +159,11 @@ public static FirebaseFirestore getInstance(@NonNull String database) {
159
159
* Returns the {@link FirebaseFirestore} instance for the provided {@link FirebaseApp}.
160
160
*
161
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 .
162
+ * database parameter. If no instance exists, initializes a new instance.
163
163
*
164
- * @param app - The {@link FirebaseApp} instance that the returned {@link FirebaseFirestore}
164
+ * @param app The {@link FirebaseApp} instance that the returned {@link FirebaseFirestore}
165
165
* instance is associated with.
166
- * @param database - The name of database.
166
+ * @param database The database ID .
167
167
* @returns The {@link FirebaseFirestore} instance.
168
168
*/
169
169
@ NonNull
0 commit comments