mirror of https://github.com/apache/lucene.git
LUCENE-1536: Fix javadocs.
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1188787 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
6b084931fd
commit
095dfdb085
|
@ -37,9 +37,7 @@ public class CachingSpanFilter extends SpanFilter {
|
|||
*/
|
||||
private final CachingWrapperFilter.FilterCache<SpanFilterResult> cache;
|
||||
|
||||
/**
|
||||
* New deletions always result in a cache miss, by default
|
||||
* ({@link CachingWrapperFilter.DeletesMode#RECACHE}.
|
||||
/** Wraps another SpanFilter's result and caches it.
|
||||
* @param filter Filter to cache results of
|
||||
*/
|
||||
public CachingSpanFilter(SpanFilter filter) {
|
||||
|
|
|
@ -63,9 +63,7 @@ public class CachingWrapperFilter extends Filter {
|
|||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* New deletes are ignored by default, which gives higher
|
||||
* cache hit rate on reopened readers.
|
||||
/** Wraps another filter's result and caches it.
|
||||
* @param filter Filter to cache results of
|
||||
*/
|
||||
public CachingWrapperFilter(Filter filter) {
|
||||
|
|
Loading…
Reference in New Issue