compilation fixed

pull/1871/head
Nikita Koksharov 6 years ago
parent 332c95ab84
commit 110989b983

@ -65,6 +65,11 @@ public class LocalCacheView<K, V> {
public K next() { public K next() {
return (K) iter.next().getKey(); return (K) iter.next().getKey();
} }
@Override
public void remove() {
iter.remove();
}
}; };
} }
@ -111,6 +116,11 @@ public class LocalCacheView<K, V> {
public V next() { public V next() {
return (V) iter.next().getValue(); return (V) iter.next().getValue();
} }
@Override
public void remove() {
iter.remove();
}
}; };
} }
@ -152,6 +162,11 @@ public class LocalCacheView<K, V> {
CacheValue e = iter.next(); CacheValue e = iter.next();
return new AbstractMap.SimpleEntry<K, V>((K)e.getKey(), (V)e.getValue()); return new AbstractMap.SimpleEntry<K, V>((K)e.getKey(), (V)e.getValue());
} }
@Override
public void remove() {
iter.remove();
}
}; };
} }

Loading…
Cancel
Save