ICU-12812 add remove() for old Java

X-SVN-Rev: 39880
This commit is contained in:
Mark Davis 2017-03-19 06:43:24 +00:00
parent 0532404ce9
commit 1492fbd84c

View file

@ -164,6 +164,10 @@ public class XCldrStub {
public Iterator<Entry<K, V>> iterator() {
return this;
}
@Override
public void remove() {
throw new UnsupportedOperationException();
}
}
private static class ReusableEntry<K,V> implements Entry<K,V> {