what-the-bank/sources/com/google/firebase/firestore/model/DocumentCollections.java

17 lines
579 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package com.google.firebase.firestore.model;
import com.google.firebase.database.collection.ImmutableSortedMap;
/* loaded from: classes2.dex */
public class DocumentCollections {
private static final ImmutableSortedMap<DocumentKey, ?> EMPTY_DOCUMENT_MAP = ImmutableSortedMap.Builder.emptyMap(DocumentKey.comparator());
public static ImmutableSortedMap<DocumentKey, SnapshotVersion> emptyVersionMap() {
return EMPTY_DOCUMENT_MAP;
}
public static ImmutableSortedMap<DocumentKey, Document> emptyDocumentMap() {
return EMPTY_DOCUMENT_MAP;
}
}