LUCENE-9694: make new DocumentSelector interface public so it is usable outside of its own package

This commit is contained in:
Mike McCandless 2021-01-29 16:10:59 -05:00
parent 9cc5c9b798
commit cac5c2a4b2
1 changed files with 1 additions and 1 deletions

View File

@ -130,7 +130,7 @@ public class IndexRearranger {
}
/** Select document within a CodecReader */
interface DocumentSelector {
public interface DocumentSelector {
BitSet getFilteredLiveDocs(CodecReader reader) throws IOException;
}
}