remove print

git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@796792 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael McCandless 2009-07-22 16:44:28 +00:00
parent 869aabff8f
commit 374822897c
1 changed files with 1 additions and 1 deletions

View File

@ -115,7 +115,7 @@ public class TestElevationComparator extends LuceneTestCase {
for (int i = 0; i < vals.length - 1; i += 2) {
q.add(new TermQuery(new Term(vals[i], vals[i + 1])), BooleanClause.Occur.SHOULD);
priority.put(vals[i + 1], new Integer(max--));
System.out.println(" pri doc=" + vals[i+1] + " pri=" + (1+max));
// System.out.println(" pri doc=" + vals[i+1] + " pri=" + (1+max));
}
return q;
}