what-the-bank/sources/com/google/firebase/firestore/local/MemoryBundleCache.java

11 lines
309 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package com.google.firebase.firestore.local;
import java.util.HashMap;
import java.util.Map;
/* loaded from: classes2.dex */
class MemoryBundleCache implements BundleCache {
private final Map<String, Object> bundles = new HashMap();
private final Map<String, Object> namedQueries = new HashMap();
}