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
This commit is contained in:
Adrien Grand 2013-10-18 19:20:41 +00:00
parent a4cb46ce23
commit e7f2780cfb
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ public abstract class DocIdSet {
/**
* This method is a hint for {@link CachingWrapperFilter}, if this <code>DocIdSet</code>
* 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
* <code>false</code>. If you have an own <code>DocIdSet</code> implementation
* that does its iteration very effective and fast without doing disk I/O,
* override this method and return <code>true</code>.