Fix checkstyle warning.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@1683648 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
bafb7096f0
commit
2403bf6543
|
@ -148,18 +148,15 @@ public class IterableUtils {
|
||||||
// ----------------------------------------------------------------------
|
// ----------------------------------------------------------------------
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Combines the two provided iterables into an ordered iterable using the
|
* Combines the two provided iterables into an ordered iterable using
|
||||||
* provided comparator. If the comparator is null, natural ordering will be
|
* natural ordering.
|
||||||
* used.
|
|
||||||
* <p>
|
* <p>
|
||||||
* The returned iterable's iterator supports {@code remove()} when the corresponding
|
* The returned iterable's iterator supports {@code remove()} when the
|
||||||
* input iterator supports it.
|
* corresponding input iterator supports it.
|
||||||
*
|
*
|
||||||
* @param <E> the element type
|
* @param <E> the element type
|
||||||
* @param a the first iterable, may be null
|
* @param a the first iterable, may be null
|
||||||
* @param b the second iterable, may be null
|
* @param b the second iterable, may be null
|
||||||
* @param comparator the comparator defining an ordering over the elements,
|
|
||||||
* may be null, in which case natural ordering will be used
|
|
||||||
* @return a filtered view on the specified iterable
|
* @return a filtered view on the specified iterable
|
||||||
*/
|
*/
|
||||||
public static <E> Iterable<E> collatedIterable(final Iterable<? extends E> a,
|
public static <E> Iterable<E> collatedIterable(final Iterable<? extends E> a,
|
||||||
|
|
Loading…
Reference in New Issue