From 888058b629205141dd31aa3fa4cae8be94dde069 Mon Sep 17 00:00:00 2001 From: Pengyu Nie Date: Thu, 19 Dec 2019 13:29:40 -0600 Subject: [PATCH] [COLLECTIONS-738]: Javadoc update in IterableUtils. --- .../java/org/apache/commons/collections4/IterableUtils.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/org/apache/commons/collections4/IterableUtils.java b/src/main/java/org/apache/commons/collections4/IterableUtils.java index 019e353e8..55c31239b 100644 --- a/src/main/java/org/apache/commons/collections4/IterableUtils.java +++ b/src/main/java/org/apache/commons/collections4/IterableUtils.java @@ -196,8 +196,8 @@ public class IterableUtils { * corresponding input iterator supports it. * * @param the element type - * @param a the first iterable, may not be null - * @param b the second iterable, may not be null + * @param a the first iterable, must not be null + * @param b the second iterable, must not be null * @return a filtered view on the specified iterable * @throws NullPointerException if either of the provided iterables is null */ @@ -619,7 +619,7 @@ public class IterableUtils { * * @param the element type * @param iterable the iterable to search, may be null - * @param predicate the predicate to use, may not be null + * @param predicate the predicate to use, must not be null * @return the index of the first element which matches the predicate or -1 if none matches * @throws NullPointerException if predicate is null */