Unnecessary ;

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@1023881 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastian Bazley 2010-10-18 16:14:15 +00:00
parent 3a00afab89
commit def5d54ebe

View File

@ -102,7 +102,7 @@ public class SplitMapUtils {
public V put(K key, V value) {
throw new UnsupportedOperationException();
};
}
public void putAll(Map<? extends K, ? extends V> t) {
throw new UnsupportedOperationException();
@ -182,7 +182,7 @@ public class SplitMapUtils {
@SuppressWarnings("unchecked")
public V put(K key, V value) {
return (V) put.put(key, value);
};
}
public void putAll(Map<? extends K, ? extends V> t) {
put.putAll(t);