diff --git a/lucene/src/java/org/apache/lucene/search/ConstantScoreQuery.java b/lucene/src/java/org/apache/lucene/search/ConstantScoreQuery.java index 1448904e569..18b9ee04571 100644 --- a/lucene/src/java/org/apache/lucene/search/ConstantScoreQuery.java +++ b/lucene/src/java/org/apache/lucene/search/ConstantScoreQuery.java @@ -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. - * - *

NOTE: 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;