Fix checkstyle warnings.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@1683722 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Thomas Neidhart 2015-06-05 12:00:32 +00:00
parent c33d3969a3
commit 8d78483013

View File

@ -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. * natural ordering.
* <p> * <p>
* The returned iterable's iterator supports {@code remove()} when the * 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. * Gets a new list with the contents of the provided iterable.
* *
* @param <E> the element type * @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 * @return a list of the iterator contents
*/ */
public static <E> List<E> toList(final Iterable<E> iterable) { public static <E> List<E> toList(final Iterable<E> iterable) {