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

Loading…
Cancel
Save