diff --git a/src/java/org/apache/commons/collections/MapUtils.java b/src/java/org/apache/commons/collections/MapUtils.java
index c3c930a5d..13e4d8963 100644
--- a/src/java/org/apache/commons/collections/MapUtils.java
+++ b/src/java/org/apache/commons/collections/MapUtils.java
@@ -29,7 +29,6 @@ import java.util.Properties;
import java.util.ResourceBundle;
import java.util.SortedMap;
import java.util.TreeMap;
-import java.util.Collection;
import org.apache.commons.collections.map.AbstractMapDecorator;
import org.apache.commons.collections.map.AbstractSortedMapDecorator;
@@ -66,8 +65,6 @@ import org.apache.commons.collections.map.UnmodifiableSortedMap;
*
{@link #predicatedSortedMap(SortedMap,Predicate,Predicate)}
* {@link #transformedMap(Map, Transformer, Transformer)}
* {@link #transformedSortedMap(SortedMap, Transformer, Transformer)}
- * {@link #typedMap(Map, Class, Class)}
- * {@link #typedSortedMap(SortedMap, Class, Class)}
* {@link #multiValueMap( Map )}
* {@link #multiValueMap( Map, Class )}
* {@link #multiValueMap( Map, Factory )}
diff --git a/src/test/org/apache/commons/collections/map/TestMultiValueMap.java b/src/test/org/apache/commons/collections/map/TestMultiValueMap.java
index ca8e3a661..27d3755b6 100644
--- a/src/test/org/apache/commons/collections/map/TestMultiValueMap.java
+++ b/src/test/org/apache/commons/collections/map/TestMultiValueMap.java
@@ -26,7 +26,6 @@ import java.util.LinkedList;
import java.util.Map;
import junit.framework.Test;
-import junit.framework.TestCase;
import junit.framework.TestSuite;
import org.apache.commons.collections.IteratorUtils;