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:
Uwe Schindler 2011-10-25 16:53:33 +00:00
parent 6b084931fd
commit 095dfdb085
2 changed files with 2 additions and 6 deletions

View File

@ -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) {

View File

@ -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) {