This is an automated email from the ASF dual-hosted git repository.
cpoerschke pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/solr.git
The following commit(s) were added to refs/heads/main by this push:
new 4c82f9a SOLR-13138: remove deprecated SolrIndexSearcher.getLiveDocs()
method (#289)
4c82f9a is described below
commit 4c82f9ac2200c7b306d466c60b74a4f611561e59
Author: Christine Poerschke <[email protected]>
AuthorDate: Wed Sep 8 18:16:22 2021 +0100
SOLR-13138: remove deprecated SolrIndexSearcher.getLiveDocs() method (#289)
---
solr/core/src/java/org/apache/solr/search/SolrIndexSearcher.java | 5 -----
1 file changed, 5 deletions(-)
diff --git a/solr/core/src/java/org/apache/solr/search/SolrIndexSearcher.java
b/solr/core/src/java/org/apache/solr/search/SolrIndexSearcher.java
index 1bd4b95..641d71c 100644
--- a/solr/core/src/java/org/apache/solr/search/SolrIndexSearcher.java
+++ b/solr/core/src/java/org/apache/solr/search/SolrIndexSearcher.java
@@ -818,11 +818,6 @@ public class SolrIndexSearcher extends IndexSearcher
implements Closeable, SolrI
private static Query matchAllDocsQuery = new MatchAllDocsQuery();
private volatile BitDocSet liveDocs;
- @Deprecated // TODO remove for 8.0
- public BitDocSet getLiveDocs() throws IOException {
- return getLiveDocSet();
- }
-
/**
* Returns an efficient random-access {@link DocSet} of the live docs. It's
cached. Never null.
* @lucene.internal the type of DocSet returned may change in the future