Skip to content

Commit d47861d

Browse files
committed
Make pretty
1 parent 08d28c7 commit d47861d

File tree

2 files changed

+16
-16
lines changed

2 files changed

+16
-16
lines changed

firebase-firestore/src/androidTest/java/com/google/firebase/firestore/FirestoreTest.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,7 @@
6060
import java.util.List;
6161
import java.util.Map;
6262
import java.util.concurrent.CountDownLatch;
63-
import java.util.concurrent.ExecutionException;
6463
import java.util.concurrent.Semaphore;
65-
import java.util.concurrent.TimeoutException;
6664
import org.junit.After;
6765
import org.junit.Test;
6866
import org.junit.runner.RunWith;

firebase-firestore/src/main/java/com/google/firebase/firestore/FirebaseFirestore.java

Lines changed: 16 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -114,10 +114,11 @@ private static FirebaseApp getDefaultFirebaseApp() {
114114

115115
/**
116116
* Returns the existing default {@link FirebaseFirestore} instance that is associated with the
117-
* default {@link FirebaseApp}. If no instance exists, initializes a new
118-
* instance with default settings.
117+
* default {@link FirebaseApp}. If no instance exists, initializes a new instance with default
118+
* settings.
119+
*
119120
* @param app - The {@link FirebaseApp} instance that the returned {@link FirebaseFirestore}
120-
* instance is associated with.
121+
* instance is associated with.
121122
* @param database - The name of database.
122123
* @returns The {@link FirebaseFirestore} instance of the provided app.
123124
*/
@@ -128,10 +129,11 @@ public static FirebaseFirestore getInstance() {
128129

129130
/**
130131
* Returns the existing default {@link FirebaseFirestore} instance that is associated with the
131-
* provided {@link FirebaseApp}. If no instance exists, initializes a new
132-
* instance with default settings.
132+
* provided {@link FirebaseApp}. If no instance exists, initializes a new instance with default
133+
* settings.
134+
*
133135
* @param app - The {@link FirebaseApp} instance that the returned {@link FirebaseFirestore}
134-
* instance is associated with.
136+
* instance is associated with.
135137
* @param database - The name of database.
136138
* @returns The {@link FirebaseFirestore} instance of the provided app.
137139
*/
@@ -141,11 +143,11 @@ public static FirebaseFirestore getInstance(@NonNull FirebaseApp app) {
141143
}
142144

143145
/**
144-
* Returns the existing {@link FirebaseFirestore} instance that is associated with the
145-
* default {@link FirebaseApp}. If no instance exists, initializes a new
146-
* instance with default settings.
146+
* Returns the existing {@link FirebaseFirestore} instance that is associated with the default
147+
* {@link FirebaseApp}. If no instance exists, initializes a new instance with default settings.
148+
*
147149
* @param app - The {@link FirebaseApp} instance that the returned {@link FirebaseFirestore}
148-
* instance is associated with.
150+
* instance is associated with.
149151
* @param database - The name of database.
150152
* @returns The {@link FirebaseFirestore} instance of the provided app.
151153
*/
@@ -155,11 +157,11 @@ public static FirebaseFirestore getInstance(@NonNull String database) {
155157
}
156158

157159
/**
158-
* Returns the existing {@link FirebaseFirestore} instance that is associated with the
159-
* provided {@link FirebaseApp}. If no instance exists, initializes a new
160-
* instance with default settings.
160+
* Returns the existing {@link FirebaseFirestore} instance that is associated with the provided
161+
* {@link FirebaseApp}. If no instance exists, initializes a new instance with default settings.
162+
*
161163
* @param app - The {@link FirebaseApp} instance that the returned {@link FirebaseFirestore}
162-
* instance is associated with.
164+
* instance is associated with.
163165
* @param database - The name of database.
164166
* @returns The {@link FirebaseFirestore} instance of the provided app.
165167
*/

0 commit comments

Comments
 (0)