documents with a score <= 0 can in fact be collected as matches

git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@596462 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Chris M. Hostetter 2007-11-19 22:03:22 +00:00
parent 88a01d6174
commit 49e85ee76d
1 changed files with 2 additions and 2 deletions

View File

@ -24,8 +24,8 @@ package org.apache.lucene.search;
* @version $Id$
*/
public abstract class HitCollector {
/** Called once for every non-zero scoring document, with the document number
* and its score.
/** Called once for every document matching a query, with the document
* number and its raw score.
*
* <P>If, for example, an application wished to collect all of the hits for a
* query in a BitSet, then it might:<pre>