Skip to content

Commit 07500fc

Browse files
Format
1 parent dade039 commit 07500fc

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,8 @@ public MutableDocument get(DocumentKey documentKey) {
8989
db.query(
9090
"SELECT contents, read_time_seconds, read_time_nanos FROM remote_documents "
9191
+ "WHERE collection_path = ? AND document_id = ?")
92-
.binding(EncodedPath.encode(documentKey.getCollectionPath()), documentKey.getDocumentId())
92+
.binding(
93+
EncodedPath.encode(documentKey.getCollectionPath()), documentKey.getDocumentId())
9394
.firstValue(row -> decodeMaybeDocument(row.getBlob(0), row.getInt(1), row.getInt(2)));
9495
return document != null ? document : MutableDocument.newInvalidDocument(documentKey);
9596
}

0 commit comments

Comments
 (0)