Skip to content

Commit 473e8f4

Browse files
Format
1 parent fa3483b commit 473e8f4

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -217,8 +217,8 @@ private Map<DocumentKey, MutableDocument> getAll(
217217
() -> {
218218
MutableDocument document =
219219
decodeMaybeDocument(rawDocument, readTimeSeconds[0], readTimeNanos[0]);
220-
synchronized (SQLiteRemoteDocumentCache.this) {
221-
results[0].put(document.getKey(), document);
220+
synchronized (SQLiteRemoteDocumentCache.this) {
221+
results[0].put(document.getKey(), document);
222222
}
223223
});
224224
});

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ class SQLiteSchema {
5151
*/
5252
static final int VERSION = 15;
5353

54-
5554
// TODO(indexing): Remove this constant and increment VERSION to enable indexing support
5655
static final int INDEXING_SUPPORT_VERSION = VERSION + 1;
5756

0 commit comments

Comments
 (0)