You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ch...@apache.org on 2017/07/11 17:53:00 UTC

[10/22] commons-collections git commit: Correct related version number

Correct related version number


git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/collections/branches/COLLECTIONS_2_1_BRANCH@131743 13f79535-47bb-0310-9956-ffa450edef68


Project: http://git-wip-us.apache.org/repos/asf/commons-collections/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-collections/commit/57c49ee8
Tree: http://git-wip-us.apache.org/repos/asf/commons-collections/tree/57c49ee8
Diff: http://git-wip-us.apache.org/repos/asf/commons-collections/diff/57c49ee8

Branch: refs/heads/COLLECTIONS_2_1_BRANCH
Commit: 57c49ee8df28edc4cb410da4b9cdd12529575af7
Parents: a9b8e2d
Author: Stephen Colebourne <sc...@apache.org>
Authored: Sat May 22 11:54:53 2004 +0000
Committer: Stephen Colebourne <sc...@apache.org>
Committed: Sat May 22 11:54:53 2004 +0000

----------------------------------------------------------------------
 RELEASE-NOTES-2.1.1.html                                     | 6 +++---
 .../commons/collections/iterators/AbstractEmptyIterator.java | 4 ++--
 .../apache/commons/collections/iterators/EmptyIterator.java  | 8 ++++----
 .../commons/collections/iterators/EmptyListIterator.java     | 8 ++++----
 4 files changed, 13 insertions(+), 13 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-collections/blob/57c49ee8/RELEASE-NOTES-2.1.1.html
----------------------------------------------------------------------
diff --git a/RELEASE-NOTES-2.1.1.html b/RELEASE-NOTES-2.1.1.html
index e9737e7..06460ec 100644
--- a/RELEASE-NOTES-2.1.1.html
+++ b/RELEASE-NOTES-2.1.1.html
@@ -17,7 +17,7 @@ given to the Commons Collections team, preventing a simple solution.
 </p>
 <p>
 This patch to Commons Collections is designed to allow version 2.1.1 to co-exist
-with version 3.0.1. The patch contains the following changes:
+with version 3.1. The patch contains the following changes:
 <ul>
 <li>Deprecated <code>IteratorUtils.arrayIterator(...)</code> -
      use <code>new ArrayIterator(...)</code> instead</li>
@@ -37,8 +37,8 @@ with version 3.0.1. The patch contains the following changes:
 </ul>
 </p>
 <p>
-To make your code compatible with both 2.1.1 and 3.0.1 and later, remove all
+To make your code compatible with both 2.1.1 and 3.1 and later, remove all
 deprecation warnings from your code and re-release.
 If you have no deprecation warnings after installing this jar, your code is
-already compatible, and will run with versions 2.1, 2.1.1, 3.0, 3.0.1 and later.
+already compatible, and will run with versions 2.1, 2.1.1, 3.0 and later.
 </p>

http://git-wip-us.apache.org/repos/asf/commons-collections/blob/57c49ee8/src/java/org/apache/commons/collections/iterators/AbstractEmptyIterator.java
----------------------------------------------------------------------
diff --git a/src/java/org/apache/commons/collections/iterators/AbstractEmptyIterator.java b/src/java/org/apache/commons/collections/iterators/AbstractEmptyIterator.java
index c848137..89878bd 100644
--- a/src/java/org/apache/commons/collections/iterators/AbstractEmptyIterator.java
+++ b/src/java/org/apache/commons/collections/iterators/AbstractEmptyIterator.java
@@ -20,8 +20,8 @@ import java.util.NoSuchElementException;
 /** 
  * Provides an implementation of an empty iterator.
  *
- * @since Commons Collections 2.1.1 and 3.0.1
- * @version $Revision: 1.1.2.1 $ $Date: 2004/05/22 11:15:22 $
+ * @since Commons Collections 2.1.1 and 3.1
+ * @version $Revision: 1.1.2.2 $ $Date: 2004/05/22 11:54:53 $
  * 
  * @author Stephen Colebourne
  */

http://git-wip-us.apache.org/repos/asf/commons-collections/blob/57c49ee8/src/java/org/apache/commons/collections/iterators/EmptyIterator.java
----------------------------------------------------------------------
diff --git a/src/java/org/apache/commons/collections/iterators/EmptyIterator.java b/src/java/org/apache/commons/collections/iterators/EmptyIterator.java
index a95491a..2b79aa7 100644
--- a/src/java/org/apache/commons/collections/iterators/EmptyIterator.java
+++ b/src/java/org/apache/commons/collections/iterators/EmptyIterator.java
@@ -22,10 +22,10 @@ import java.util.Iterator;
  * <p>
  * This class provides an implementation of an empty iterator.
  * This class provides for binary compatability between Commons Collections
- * 2.1.1 and 3.0.1 due to issues with <code>IteratorUtils</code>.
+ * 2.1.1 and 3.1 due to issues with <code>IteratorUtils</code>.
  *
- * @since Commons Collections 2.1.1 and 3.0.1
- * @version $Revision: 1.1.2.1 $ $Date: 2004/05/22 11:15:22 $
+ * @since Commons Collections 2.1.1 and 3.1
+ * @version $Revision: 1.1.2.2 $ $Date: 2004/05/22 11:54:53 $
  * 
  * @author Stephen Colebourne
  */
@@ -33,7 +33,7 @@ public final class EmptyIterator extends AbstractEmptyIterator implements Iterat
 
     /**
      * Singleton instance of the iterator.
-     * @since Commons Collections 2.1.1 and 3.0.1
+     * @since Commons Collections 2.1.1 and 3.1
      */
     public static final Iterator INSTANCE = new EmptyIterator();
 

http://git-wip-us.apache.org/repos/asf/commons-collections/blob/57c49ee8/src/java/org/apache/commons/collections/iterators/EmptyListIterator.java
----------------------------------------------------------------------
diff --git a/src/java/org/apache/commons/collections/iterators/EmptyListIterator.java b/src/java/org/apache/commons/collections/iterators/EmptyListIterator.java
index 7747278..7252129 100644
--- a/src/java/org/apache/commons/collections/iterators/EmptyListIterator.java
+++ b/src/java/org/apache/commons/collections/iterators/EmptyListIterator.java
@@ -22,10 +22,10 @@ import java.util.ListIterator;
  * <p>
  * This class provides an implementation of an empty list iterator.
  * This class provides for binary compatability between Commons Collections
- * 2.1.1 and 3.0.1 due to issues with <code>IteratorUtils</code>.
+ * 2.1.1 and 3.1 due to issues with <code>IteratorUtils</code>.
  *
- * @since Commons Collections 2.1.1 and 3.0.1
- * @version $Revision: 1.1.2.1 $ $Date: 2004/05/22 11:15:22 $
+ * @since Commons Collections 2.1.1 and 3.1
+ * @version $Revision: 1.1.2.2 $ $Date: 2004/05/22 11:54:53 $
  * 
  * @author Stephen Colebourne
  */
@@ -33,7 +33,7 @@ public final class EmptyListIterator extends AbstractEmptyIterator implements Li
 
     /**
      * Singleton instance of the iterator.
-     * @since Commons Collections 2.1.1 and 3.0.1
+     * @since Commons Collections 2.1.1 and 3.1
      */
     public static final ListIterator INSTANCE = new EmptyListIterator();