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:
Mark Robert Miller 2010-03-14 23:27:19 +00:00
parent ea6663ff2d
commit 21f422de94
1 changed files with 1 additions and 1 deletions

View File

@ -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();
}