17 lines
579 B
Java
17 lines
579 B
Java
|
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;
|
||
|
}
|
||
|
}
|