Removed debug I stupidly left in.
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/collections/trunk@131215 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
62543d554d
commit
105c1ac930
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/decorators/Attic/OrderedSet.java,v 1.3 2003/10/02 03:10:37 bayard Exp $
|
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/decorators/Attic/OrderedSet.java,v 1.4 2003/10/02 03:11:08 bayard Exp $
|
||||||
* ====================================================================
|
* ====================================================================
|
||||||
*
|
*
|
||||||
* The Apache Software License, Version 1.1
|
* The Apache Software License, Version 1.1
|
||||||
|
@ -82,7 +82,7 @@ import java.util.Set;
|
||||||
* various interface methods (notably equals/hashCode) are incompatable with a set.
|
* various interface methods (notably equals/hashCode) are incompatable with a set.
|
||||||
*
|
*
|
||||||
* @since Commons Collections 3.0
|
* @since Commons Collections 3.0
|
||||||
* @version $Revision: 1.3 $ $Date: 2003/10/02 03:10:37 $
|
* @version $Revision: 1.4 $ $Date: 2003/10/02 03:11:08 $
|
||||||
*
|
*
|
||||||
* @author Stephen Colebourne
|
* @author Stephen Colebourne
|
||||||
* @author Henning P. Schmiedehausen
|
* @author Henning P. Schmiedehausen
|
||||||
|
@ -292,7 +292,6 @@ public class OrderedSet extends AbstractSetDecorator implements Set {
|
||||||
|
|
||||||
public Object next() {
|
public Object next() {
|
||||||
last = iterator.next();
|
last = iterator.next();
|
||||||
System.err.println("RETURNING: "+last);
|
|
||||||
return last;
|
return last;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue