recurseCount for parent was never decremented

git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@633579 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Yonik Seeley 2008-03-04 18:40:50 +00:00
parent 5b4ed51ec7
commit 4f11226916
1 changed files with 1 additions and 0 deletions

View File

@ -113,6 +113,7 @@ public abstract class QParser {
}
QParser nestedParser = getParser(q, defaultType, getReq());
nestedParser.recurseCount = recurseCount;
recurseCount--;
return nestedParser;
}