File tree Expand file tree Collapse file tree 1 file changed +2
-7
lines changed
firebase-firestore/src/main/java/com/google/firebase/firestore/local Expand file tree Collapse file tree 1 file changed +2
-7
lines changed Original file line number Diff line number Diff line change @@ -102,14 +102,9 @@ Document getDocument(DocumentKey key) {
102102 * <p>If we don't have cached state for a document in {@code keys}, a NoDocument will be stored
103103 * for that key in the resulting set.
104104 */
105- ImmutableSortedMap <DocumentKey , Document > getDocuments (
106- Iterable <DocumentKey > keys , QueryContext counter ) {
107- Map <DocumentKey , MutableDocument > docs = remoteDocumentCache .getAll (keys , counter );
108- return getLocalViewOfDocuments (docs , new HashSet <>());
109- }
110-
111105 ImmutableSortedMap <DocumentKey , Document > getDocuments (Iterable <DocumentKey > keys ) {
112- return getDocuments (keys , new QueryContext ());
106+ Map <DocumentKey , MutableDocument > docs = remoteDocumentCache .getAll (keys );
107+ return getLocalViewOfDocuments (docs , new HashSet <>());
113108 }
114109
115110 /**
You can’t perform that action at this time.
0 commit comments