Removed incorrect comment

This commit is contained in:
Martijn van Groningen 2014-04-02 12:14:35 +07:00
parent b7451533c8
commit d57ef1e0d6
2 changed files with 2 additions and 2 deletions

View File

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

View File

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