whoops ... args were being passed in wrong order

git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@563753 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Chris M. Hostetter 2007-08-08 05:31:06 +00:00
parent 022e1d7633
commit e8533194c0
1 changed files with 1 additions and 1 deletions

View File

@ -548,7 +548,7 @@ public class SimpleFacets {
protected int rangeCount(String field, String low, String high,
boolean iLow, boolean iHigh) throws IOException {
return searcher.numDocs(new ConstantScoreRangeQuery(field,low,high,
iHigh,iLow),
iLow,iHigh),
docs);
}