package com.google.firebase.firestore.local; import com.google.firebase.database.collection.ImmutableSortedMap; import com.google.firebase.database.collection.ImmutableSortedSet; import com.google.firebase.firestore.model.Document; import com.google.firebase.firestore.model.DocumentKey; /* loaded from: classes2.dex */ public class QueryResult { private final ImmutableSortedMap documents; private final ImmutableSortedSet remoteKeys; public QueryResult(ImmutableSortedMap immutableSortedMap, ImmutableSortedSet immutableSortedSet) { this.documents = immutableSortedMap; this.remoteKeys = immutableSortedSet; } public ImmutableSortedSet getRemoteKeys() { return this.remoteKeys; } public ImmutableSortedMap getDocuments() { return this.documents; } }