Skip to content

Commit 854ecd3

Browse files
committed
Format
1 parent 74a5ca7 commit 854ecd3

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -377,7 +377,9 @@ private ImmutableSortedMap<DocumentKey, Document> getDocumentsMatchingCollection
377377
for (Map.Entry<DocumentKey, MutableDocument> docEntry : remoteDocuments.entrySet()) {
378378
Overlay overlay = overlays.get(docEntry.getKey());
379379
if (overlay != null) {
380-
overlay.getMutation().applyToLocalView(docEntry.getValue(), FieldMask.EMPTY, Timestamp.now());
380+
overlay
381+
.getMutation()
382+
.applyToLocalView(docEntry.getValue(), FieldMask.EMPTY, Timestamp.now());
381383
}
382384
// Finally, insert the documents that still match the query
383385
if (query.matches(docEntry.getValue())) {

0 commit comments

Comments
 (0)