Deprecated constant removed for next release

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/collections/trunk@131076 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Stephen Colebourne 2003-05-11 14:12:46 +00:00
parent 86fc29dc96
commit 0519ee87a7
1 changed files with 2 additions and 7 deletions

View File

@ -1,5 +1,5 @@
/*
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/CollectionUtils.java,v 1.31 2003/05/11 13:29:16 scolebourne Exp $
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/CollectionUtils.java,v 1.32 2003/05/11 14:12:46 scolebourne Exp $
* ====================================================================
*
* The Apache Software License, Version 1.1
@ -81,7 +81,7 @@ import org.apache.commons.collections.iterators.EnumerationIterator;
* A set of {@link Collection} related utility methods.
*
* @since Commons Collections 1.0
* @version $Revision: 1.31 $ $Date: 2003/05/11 13:29:16 $
* @version $Revision: 1.32 $ $Date: 2003/05/11 14:12:46 $
*
* @author Rodney Waldhoff
* @author Paul Jack
@ -100,11 +100,6 @@ public class CollectionUtils {
* undesirable. This implementation only implements Collection.
*/
public static final Collection EMPTY_COLLECTION = Collections.unmodifiableCollection(new ArrayList());
/**
* The empty iterator (immutable).
* @deprecated use IteratorUtils.EMPTY_ITERATOR
*/
public static final Iterator EMPTY_ITERATOR = IteratorUtils.EMPTY_ITERATOR;
/**
* <code>CollectionUtils</code> should not normally be instantiated.