From f0974d3b28d1049018ad2fbcf4b3284eff6b9f20 Mon Sep 17 00:00:00 2001 From: Thomas Neidhart Date: Fri, 7 Sep 2012 21:12:58 +0000 Subject: [PATCH] Javadoc fixes. git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@1382173 13f79535-47bb-0310-9956-ffa450edef68 --- .../org/apache/commons/collections/ListUtils.java | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/src/main/java/org/apache/commons/collections/ListUtils.java b/src/main/java/org/apache/commons/collections/ListUtils.java index dc5913127..b3c206756 100644 --- a/src/main/java/org/apache/commons/collections/ListUtils.java +++ b/src/main/java/org/apache/commons/collections/ListUtils.java @@ -149,6 +149,7 @@ public class ListUtils { *

* A null predicate matches no elements. * + * @param the element type * @param inputCollection * the collection to get the input from, may not be null * @param predicate @@ -160,9 +161,9 @@ public class ListUtils { * @since 4.0 * @see CollectionUtils#select(Collection, Predicate) */ - public static List select(Collection inputCollection, - Predicate predicate) { - return CollectionUtils.select(inputCollection, predicate, new ArrayList(inputCollection.size())); + public static List select(Collection inputCollection, + Predicate predicate) { + return CollectionUtils.select(inputCollection, predicate, new ArrayList(inputCollection.size())); } /** @@ -172,6 +173,7 @@ public class ListUtils { * If the input predicate is null, the result is an empty * list. * + * @param the element type * @param inputCollection * the collection to get the input from, may not be null * @param predicate @@ -183,9 +185,9 @@ public class ListUtils { * @since 4.0 * @see CollectionUtils#selectRejected(Collection, Predicate) */ - public static List selectRejected(Collection inputCollection, - Predicate predicate) { - return CollectionUtils.selectRejected(inputCollection, predicate, new ArrayList(inputCollection.size())); + public static List selectRejected(Collection inputCollection, + Predicate predicate) { + return CollectionUtils.selectRejected(inputCollection, predicate, new ArrayList(inputCollection.size())); } /**