File tree Expand file tree Collapse file tree 3 files changed +3
-7
lines changed Expand file tree Collapse file tree 3 files changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ export interface IndexedDbRemoteDocumentCache extends RemoteDocumentCache {
67
67
* The RemoteDocumentCache for IndexedDb. To construct, invoke
68
68
* `newIndexedDbRemoteDocumentCache()`.
69
69
*/
70
- export class IndexedDbRemoteDocumentCacheImpl implements RemoteDocumentCache {
70
+ class IndexedDbRemoteDocumentCacheImpl implements IndexedDbRemoteDocumentCache {
71
71
/**
72
72
* @param serializer The document serializer.
73
73
* @param indexManager The query indexes that need to be maintained.
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ export interface MemoryRemoteDocumentCache extends RemoteDocumentCache {
61
61
* The memory-only RemoteDocumentCache for IndexedDb. To construct, invoke
62
62
* `newMemoryRemoteDocumentCache()`.
63
63
*/
64
- class MemoryRemoteDocumentCacheImpl implements RemoteDocumentCache {
64
+ class MemoryRemoteDocumentCacheImpl implements MemoryRemoteDocumentCache {
65
65
/** Underlying cache of documents and their read times. */
66
66
private docs = documentEntryMap ( ) ;
67
67
Original file line number Diff line number Diff line change @@ -20,10 +20,7 @@ import { SnapshotVersion } from '../../../src/core/snapshot_version';
20
20
import { Persistence } from '../../../src/local/persistence' ;
21
21
import { PersistencePromise } from '../../../src/local/persistence_promise' ;
22
22
import { RemoteDocumentCache } from '../../../src/local/remote_document_cache' ;
23
- import {
24
- IndexedDbRemoteDocumentCache ,
25
- remoteDocumentCacheGetNewDocumentChanges
26
- } from '../../../src/local/indexeddb_remote_document_cache' ;
23
+ import { remoteDocumentCacheGetNewDocumentChanges } from '../../../src/local/indexeddb_remote_document_cache' ;
27
24
import { RemoteDocumentChangeBuffer } from '../../../src/local/remote_document_change_buffer' ;
28
25
import {
29
26
DocumentKeySet ,
@@ -33,7 +30,6 @@ import {
33
30
} from '../../../src/model/collections' ;
34
31
import { MaybeDocument } from '../../../src/model/document' ;
35
32
import { DocumentKey } from '../../../src/model/document_key' ;
36
- import { debugAssert } from '../../../src/util/assert' ;
37
33
38
34
/**
39
35
* A wrapper around a RemoteDocumentCache that automatically creates a
You can’t perform that action at this time.
0 commit comments