Skip to content

Commit 486be8d

Browse files
Format
1 parent 6b5d9e0 commit 486be8d

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

firebase-firestore/src/main/java/com/google/firebase/firestore/local/IndexBackfiller.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,8 +115,7 @@ public int backfill() {
115115
hardAssert(localDocumentsView != null, "setLocalDocumentsView() not called");
116116
hardAssert(indexManager != null, "setIndexManager() not called");
117117
return persistence.runTransaction(
118-
"Backfill Indexes",
119-
() -> writeIndexEntries(localDocumentsView));
118+
"Backfill Indexes", () -> writeIndexEntries(localDocumentsView));
120119
}
121120

122121
/** Writes index entries until the cap is reached. Returns the number of documents processed. */

firebase-firestore/src/main/java/com/google/firebase/firestore/local/SQLiteSchema.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -358,8 +358,8 @@ private void createV1RemoteDocumentCache() {
358358
* <p>The `index_configuration` table holds the configuration for all indices. Entries in this
359359
* table apply for all users. It is not possible to only enable indices for a subset of users.
360360
*
361-
* <p>The `index_state` table holds backfill information on each index that stores when it was last
362-
* updated.
361+
* <p>The `index_state` table holds backfill information on each index that stores when it was
362+
* last updated.
363363
*
364364
* <p>The `index_entries` table holds the index values themselves. An index value is created for
365365
* each field combination that matches a configured index.

0 commit comments

Comments
 (0)