Removed incorrect comment
This commit is contained in:
parent
b7451533c8
commit
d57ef1e0d6
|
@ -151,7 +151,7 @@ public interface IndexFieldDataCache {
|
|||
|
||||
static class Key {
|
||||
final Object readerKey;
|
||||
final List<Listener> listeners = new ArrayList<>(); // optional stats listener
|
||||
final List<Listener> listeners = new ArrayList<>();
|
||||
long sizeInBytes = -1; // optional size in bytes (we keep it here in case the values are soft references)
|
||||
|
||||
Key(Object readerKey) {
|
||||
|
|
|
@ -197,7 +197,7 @@ public class IndicesFieldDataCache extends AbstractComponent implements RemovalL
|
|||
public final IndexFieldCache indexCache;
|
||||
public final Object readerKey;
|
||||
|
||||
public final List<IndexFieldDataCache.Listener> listeners = new ArrayList<>(); // optional stats listener
|
||||
public final List<IndexFieldDataCache.Listener> listeners = new ArrayList<>();
|
||||
long sizeInBytes = -1; // optional size in bytes (we keep it here in case the values are soft references)
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue