anantdamle commented on a change in pull request #238:
URL: 
https://github.com/apache/commons-collections/pull/238#discussion_r649063555



##########
File path: src/main/java/org/apache/commons/collections4/IteratorUtils.java
##########
@@ -127,7 +87,7 @@ private IteratorUtils() {}
      * @return an iterator over nothing
      */
     public static <E> ResettableIterator<E> emptyIterator() {
-        return EmptyIterator.<E>resettableEmptyIterator();
+        return EmptyIterator.resettableEmptyIterator();

Review comment:
       Done.

##########
File path: src/main/java/org/apache/commons/collections4/IterableUtils.java
##########
@@ -554,6 +555,34 @@
         };
     }
 
+    /**
+     * Provides iteration over the elements contained in a pair of Iterables 
in-tandem.
+     * <p>
+     * The returned iterable has an iterator that traverses the elements in 
{@code a}
+     * and {@code b} together until one of the iterables is traversed 
completely.
+     * <p>

Review comment:
       Done.




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to