mirror of https://github.com/apache/lucene.git
fix typo in comment
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1471617 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
7b783b312c
commit
160438c43a
|
@ -418,7 +418,7 @@ public abstract class IndexReader implements Closeable {
|
|||
* it again.
|
||||
* This key must not have equals()/hashCode() methods, so "equals" means "identical". */
|
||||
public Object getCoreCacheKey() {
|
||||
// Don't can ensureOpen since FC calls this (to evict)
|
||||
// Don't call ensureOpen since FC calls this (to evict)
|
||||
// on close
|
||||
return this;
|
||||
}
|
||||
|
@ -427,7 +427,7 @@ public abstract class IndexReader implements Closeable {
|
|||
* so FieldCache/CachingWrapperFilter can find it again.
|
||||
* This key must not have equals()/hashCode() methods, so "equals" means "identical". */
|
||||
public Object getCombinedCoreAndDeletesKey() {
|
||||
// Don't can ensureOpen since FC calls this (to evict)
|
||||
// Don't call ensureOpen since FC calls this (to evict)
|
||||
// on close
|
||||
return this;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue