File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed
firebase-firestore/src/main/java/com/google/firebase/firestore/local Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -115,8 +115,7 @@ public int backfill() {
115
115
hardAssert (localDocumentsView != null , "setLocalDocumentsView() not called" );
116
116
hardAssert (indexManager != null , "setIndexManager() not called" );
117
117
return persistence .runTransaction (
118
- "Backfill Indexes" ,
119
- () -> writeIndexEntries (localDocumentsView ));
118
+ "Backfill Indexes" , () -> writeIndexEntries (localDocumentsView ));
120
119
}
121
120
122
121
/** Writes index entries until the cap is reached. Returns the number of documents processed. */
Original file line number Diff line number Diff line change @@ -358,8 +358,8 @@ private void createV1RemoteDocumentCache() {
358
358
* <p>The `index_configuration` table holds the configuration for all indices. Entries in this
359
359
* table apply for all users. It is not possible to only enable indices for a subset of users.
360
360
*
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.
363
363
*
364
364
* <p>The `index_entries` table holds the index values themselves. An index value is created for
365
365
* each field combination that matches a configured index.
You can’t perform that action at this time.
0 commit comments