make SearcherAndTaxonomy ctor public

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1478729 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael McCandless 2013-05-03 11:17:17 +00:00
parent efeaac746a
commit aec9d12e9b
1 changed files with 2 additions and 1 deletions

View File

@ -47,7 +47,8 @@ public class SearcherTaxonomyManager extends ReferenceManager<SearcherTaxonomyMa
public final IndexSearcher searcher;
public final DirectoryTaxonomyReader taxonomyReader;
SearcherAndTaxonomy(IndexSearcher searcher, DirectoryTaxonomyReader taxonomyReader) {
/** Create a SearcherAndTaxonomy */
public SearcherAndTaxonomy(IndexSearcher searcher, DirectoryTaxonomyReader taxonomyReader) {
this.searcher = searcher;
this.taxonomyReader = taxonomyReader;
}