You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by tn...@apache.org on 2015/06/05 14:00:33 UTC

svn commit: r1683722 - /commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/IterableUtils.java

Author: tn
Date: Fri Jun  5 12:00:32 2015
New Revision: 1683722

URL: http://svn.apache.org/r1683722
Log:
Fix checkstyle warnings.

Modified:
    commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/IterableUtils.java

Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/IterableUtils.java
URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/IterableUtils.java?rev=1683722&r1=1683721&r2=1683722&view=diff
==============================================================================
--- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/IterableUtils.java (original)
+++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/IterableUtils.java Fri Jun  5 12:00:32 2015
@@ -148,7 +148,7 @@ public class IterableUtils {
     // ----------------------------------------------------------------------
 
     /**
-     * Combines the two provided iterables into an ordered iterable using 
+     * Combines the two provided iterables into an ordered iterable using
      * natural ordering.
      * <p>
      * The returned iterable's iterator supports {@code remove()} when the
@@ -657,7 +657,7 @@ public class IterableUtils {
      * Gets a new list with the contents of the provided iterable.
      *
      * @param <E>  the element type
-     * @param iterator  the iterable to use, may be null
+     * @param iterable  the iterable to use, may be null
      * @return a list of the iterator contents
      */
     public static <E> List<E> toList(final Iterable<E> iterable) {