From 134caec9ec35f8b26e73586d8e9b066df5c3a315 Mon Sep 17 00:00:00 2001
From: Morgan James Delagrange
Date: Tue, 9 Apr 2002 16:33:40 +0000
Subject: [PATCH] fixed doco bug
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/collections/trunk@130688 13f79535-47bb-0310-9956-ffa450edef68
---
.../commons/collections/IteratorChain.java | 19 ++++++++-----------
1 file changed, 8 insertions(+), 11 deletions(-)
diff --git a/src/java/org/apache/commons/collections/IteratorChain.java b/src/java/org/apache/commons/collections/IteratorChain.java
index af6e0765c..8e6b256f2 100644
--- a/src/java/org/apache/commons/collections/IteratorChain.java
+++ b/src/java/org/apache/commons/collections/IteratorChain.java
@@ -1,7 +1,7 @@
/*
- * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/Attic/IteratorChain.java,v 1.2 2002/04/08 23:59:58 morgand Exp $
- * $Revision: 1.2 $
- * $Date: 2002/04/08 23:59:58 $
+ * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/Attic/IteratorChain.java,v 1.3 2002/04/09 16:33:40 morgand Exp $
+ * $Revision: 1.3 $
+ * $Date: 2002/04/09 16:33:40 $
*
* ====================================================================
*
@@ -67,20 +67,17 @@ import java.util.NoSuchElementException;
/**
* An IteratorChain is an Iterator that wraps one or
- * more Iterators in sequence. When any method from the
+ * more Iterators. When any method from the
* Iterator interface is called, the IteratorChain will
- * call the same method on the first Iterator in the chain
- * until it is exhausted until the first Iterator is exhausted.
- * At that point, the IteratorChain will move to the next
- * Iterator in the IteratorChain. The IteratorChain will
- * continue in this pattern until all Iterators in the
- * IteratorChain are exhausted.
+ * proxy to a single underlying Iterator. The
+ * IteratorChain will invoke the Iterators in sequence until
+ * all Iterators are exhausted completely.
*
* Under many circumstances, linking Iterators together
* in this manner is more efficient (and convenient)
* than reading out the contents of each Iterator into a
* List and creating a new Iterator.
- *
+ *
* Calling a method that adds new Iteratorafter
* a method in the Iterator interface
* has been called will result in an