mirror of https://github.com/apache/lucene.git
fix setInfosIndexDivisor is now setTermIndexInterval (missed a piece)
git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/branches/solr@923006 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
ea6663ff2d
commit
21f422de94
|
@ -39,7 +39,7 @@ public abstract class IndexReaderFactory implements NamedListInitializedPlugin {
|
|||
*
|
||||
*/
|
||||
public void init(NamedList args) {
|
||||
Integer v = (Integer)args.get("termInfosIndexDivisor");
|
||||
Integer v = (Integer)args.get("setTermIndexInterval");
|
||||
if (v != null) {
|
||||
termInfosIndexDivisor = v.intValue();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue