Compilation fixed

pull/1871/head
Nikita Koksharov 6 years ago
parent 110989b983
commit 228319d656

@ -185,7 +185,7 @@ public class LocalCacheView<K, V> {
if (o instanceof Map.Entry) {
Map.Entry<?,?> e = (Map.Entry<?,?>) o;
CacheKey cacheKey = toCacheKey(e.getKey());
return cache.remove(cacheKey, new CacheValue(e.getKey(), e.getValue()));
return cache.remove(cacheKey) != null;
}
return false;
}

Loading…
Cancel
Save