Skip to content

Commit c043afb

Browse files
committed
Fix nit
1 parent 5ad4897 commit c043afb

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

firebase-firestore/src/main/java/com/google/firebase/firestore/core/ComponentProvider.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,6 @@ public void initialize(Configuration configuration) {
146146
*
147147
* <p>To catch incorrect order, all getX methods have runtime check for null.
148148
*/
149-
// The order in which components are created is important
150149
persistence = createPersistence(configuration);
151150
persistence.start();
152151
localStore = createLocalStore(configuration);

firebase-firestore/src/main/java/com/google/firebase/firestore/util/Assert.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public static void hardAssert(boolean condition, String messageFormat, Object...
3737
* is null an AssertionError will be thrown. The string messageFormat will be formatted with the
3838
* provided args using {@link String#format(String, Object...)}.
3939
*
40-
* @param obj The condition to check
40+
* @param obj The object to be compared with null
4141
* @param messageFormat The message to throw if the condition is false, formatted using {@link
4242
* String#format(String, Object...)}.
4343
* @param args The args to pass to String.format

0 commit comments

Comments
 (0)