LUCENE-1536: Fix javadocs.

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1188847 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Uwe Schindler 2011-10-25 18:18:57 +00:00
parent 6e793eb1a0
commit 7acefc48fa
1 changed files with 0 additions and 6 deletions

View File

@ -30,12 +30,6 @@ import java.util.Set;
* A query that wraps another query or a filter and simply returns a constant score equal to the
* query boost for every document that matches the filter or query.
* For queries it therefore simply strips of all scores and returns a constant one.
*
* <p><b>NOTE</b>: if the wrapped filter is an instance of
* {@link CachingWrapperFilter}, you'll likely want to
* enforce deletions in the filter (using either {@link
* CachingWrapperFilter.DeletesMode#RECACHE} or {@link
* CachingWrapperFilter.DeletesMode#DYNAMIC}).
*/
public class ConstantScoreQuery extends Query {
protected final Filter filter;