This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-collections.git
commit 32f59e0493d3c2bcdf9415c99e2dfc278f3b2927 Author: Gary D. Gregory <garydgreg...@gmail.com> AuthorDate: Sat Apr 19 08:56:00 2025 -0400 Javadoc --- .../org/apache/commons/collections4/functors/FunctorUtils.java | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/apache/commons/collections4/functors/FunctorUtils.java b/src/main/java/org/apache/commons/collections4/functors/FunctorUtils.java index b696d010f..6209735c7 100644 --- a/src/main/java/org/apache/commons/collections4/functors/FunctorUtils.java +++ b/src/main/java/org/apache/commons/collections4/functors/FunctorUtils.java @@ -34,9 +34,11 @@ final class FunctorUtils { * A very simple method that coerces Predicate<? super T> to Predicate<T>. * Due to the {@link Predicate#test(T)} method, Predicate<? super T> is * able to be coerced to Predicate<T> without casting issues. - * <p>This method exists + * <p> + * This method exists * simply as centralized documentation and atomic unchecked warning * suppression. + * </p> * * @param <T> the type of object the returned predicate should "accept" * @param predicate the predicate to coerce. @@ -49,9 +51,11 @@ final class FunctorUtils { /** * A very simple method that coerces Transformer<? super I, ? extends O> to Transformer<I, O>. - * <p>This method exists + * <p> + * This method exists * simply as centralized documentation and atomic unchecked warning * suppression. + * </p> * * @param <I> the type of object the returned transformer should "accept" * @param <O> the type of object the returned transformer should "produce"