Remove unneeded import.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@1460217 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Thomas Neidhart 2013-03-23 19:32:34 +00:00
parent d9a537edb9
commit 8961704ab4
1 changed files with 2 additions and 2 deletions

View File

@ -27,7 +27,6 @@ import java.util.List;
import java.util.Set; import java.util.Set;
import org.apache.commons.collections.CollectionUtils; import org.apache.commons.collections.CollectionUtils;
import org.apache.commons.collections.collection.CompositeCollection;
import org.apache.commons.collections.iterators.EmptyIterator; import org.apache.commons.collections.iterators.EmptyIterator;
import org.apache.commons.collections.iterators.IteratorChain; import org.apache.commons.collections.iterators.IteratorChain;
import org.apache.commons.collections.list.UnmodifiableList; import org.apache.commons.collections.list.UnmodifiableList;
@ -39,7 +38,8 @@ import org.apache.commons.collections.list.UnmodifiableList;
* Add operations require the use of a pluggable strategy. * Add operations require the use of a pluggable strategy.
* If no strategy is provided then add is unsupported. * If no strategy is provided then add is unsupported.
* <p> * <p>
* From version 4.0, this class does not extend {@link CompositeCollection} * From version 4.0, this class does not extend
* {@link org.apache.commons.collections.collection.CompositeCollection CompositeCollection}
* anymore due to its input restrictions (only accepts Sets). * anymore due to its input restrictions (only accepts Sets).
* See <a href="https://issues.apache.org/jira/browse/COLLECTIONS-424">COLLECTIONS-424</a> * See <a href="https://issues.apache.org/jira/browse/COLLECTIONS-424">COLLECTIONS-424</a>
* for more details. * for more details.