From e7f2780cfbc97f26c6f0a2e69883e3ddefa54531 Mon Sep 17 00:00:00 2001 From: Adrien Grand Date: Fri, 18 Oct 2013 19:20:41 +0000 Subject: [PATCH] Don't mention BitSet in DocIdSet.isCacheable() documentation, since CachingWrapperFilter doesn't use BitSets for caching anymore (fix suggested by Paul Elschot). git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1533598 13f79535-47bb-0310-9956-ffa450edef68 --- lucene/core/src/java/org/apache/lucene/search/DocIdSet.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lucene/core/src/java/org/apache/lucene/search/DocIdSet.java b/lucene/core/src/java/org/apache/lucene/search/DocIdSet.java index eddbe6dcf19..f6a4dd90b90 100644 --- a/lucene/core/src/java/org/apache/lucene/search/DocIdSet.java +++ b/lucene/core/src/java/org/apache/lucene/search/DocIdSet.java @@ -50,7 +50,7 @@ public abstract class DocIdSet { /** * This method is a hint for {@link CachingWrapperFilter}, if this DocIdSet - * should be cached without copying it into a BitSet. The default is to return + * should be cached without copying it. The default is to return * false. If you have an own DocIdSet implementation * that does its iteration very effective and fast without doing disk I/O, * override this method and return true.