]> granicus.if.org Git - icu/commitdiff
ICU-12812 add remove() for old Java
authorMark Davis <mark@macchiato.com>
Sun, 19 Mar 2017 06:43:24 +0000 (06:43 +0000)
committerMark Davis <mark@macchiato.com>
Sun, 19 Mar 2017 06:43:24 +0000 (06:43 +0000)
X-SVN-Rev: 39880

icu4j/main/classes/core/src/com/ibm/icu/impl/locale/XCldrStub.java

index 1fdbff09e2de45db371843aec88044a122e713da..ce1968b3feddde8f6b32099a590281ab9850bc4b 100644 (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> {