Unnecessary qualified name.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@1543258 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary D. Gregory 2013-11-19 00:46:30 +00:00
parent 81d1982c3c
commit e32f477085

View File

@ -64,7 +64,7 @@ public class SplitMapUtils {
return get.containsValue(value);
}
public Set<java.util.Map.Entry<K, V>> entrySet() {
public Set<Map.Entry<K, V>> entrySet() {
return UnmodifiableEntrySet.unmodifiableEntrySet(get.entrySet());
}
@ -143,7 +143,7 @@ public class SplitMapUtils {
throw new UnsupportedOperationException();
}
public Set<java.util.Map.Entry<K, V>> entrySet() {
public Set<Map.Entry<K, V>> entrySet() {
throw new UnsupportedOperationException();
}