Skip to content

Commit 567af79

Browse files
Remove unneeded method
1 parent cf838e7 commit 567af79

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

firebase-firestore/src/main/java/com/google/firebase/firestore/local/LocalDocumentsView.java

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -76,11 +76,6 @@ DocumentOverlayCache getDocumentOverlayCache() {
7676
return documentOverlayCache;
7777
}
7878

79-
@VisibleForTesting
80-
IndexManager getIndexManager() {
81-
return indexManager;
82-
}
83-
8479
/**
8580
* Returns the the local view of the document identified by {@code key}.
8681
*

firebase-firestore/src/test/java/com/google/firebase/firestore/local/CountingQueryEngine.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public void initialize(LocalDocumentsView localDocuments, IndexManager indexMana
5959
wrapRemoteDocumentCache(localDocuments.getRemoteDocumentCache()),
6060
localDocuments.getMutationQueue(),
6161
wrapOverlayCache(localDocuments.getDocumentOverlayCache()),
62-
localDocuments.getIndexManager());
62+
indexManager);
6363
queryEngine.initialize(wrappedView, indexManager);
6464
}
6565

0 commit comments

Comments
 (0)