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:
Michael McCandless 2013-04-24 19:53:20 +00:00
parent 7b783b312c
commit 160438c43a
1 changed files with 2 additions and 2 deletions

View File

@ -418,7 +418,7 @@ public abstract class IndexReader implements Closeable {
* it again. * it again.
* This key must not have equals()/hashCode() methods, so "equals" means "identical". */ * This key must not have equals()/hashCode() methods, so "equals" means "identical". */
public Object getCoreCacheKey() { 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 // on close
return this; return this;
} }
@ -427,7 +427,7 @@ public abstract class IndexReader implements Closeable {
* so FieldCache/CachingWrapperFilter can find it again. * so FieldCache/CachingWrapperFilter can find it again.
* This key must not have equals()/hashCode() methods, so "equals" means "identical". */ * This key must not have equals()/hashCode() methods, so "equals" means "identical". */
public Object getCombinedCoreAndDeletesKey() { 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 // on close
return this; return this;
} }