Skip to content

Commit 32f59e0

Browse files
committed
Javadoc
1 parent 725986d commit 32f59e0

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

src/main/java/org/apache/commons/collections4/functors/FunctorUtils.java

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,11 @@ final class FunctorUtils {
3434
* A very simple method that coerces Predicate<? super T> to Predicate<T>.
3535
* Due to the {@link Predicate#test(T)} method, Predicate<? super T> is
3636
* able to be coerced to Predicate<T> without casting issues.
37-
* <p>This method exists
37+
* <p>
38+
* This method exists
3839
* simply as centralized documentation and atomic unchecked warning
3940
* suppression.
41+
* </p>
4042
*
4143
* @param <T> the type of object the returned predicate should "accept"
4244
* @param predicate the predicate to coerce.
@@ -49,9 +51,11 @@ static <R extends java.util.function.Predicate<T>, P extends java.util.function.
4951

5052
/**
5153
* A very simple method that coerces Transformer<? super I, ? extends O> to Transformer<I, O>.
52-
* <p>This method exists
54+
* <p>
55+
* This method exists
5356
* simply as centralized documentation and atomic unchecked warning
5457
* suppression.
58+
* </p>
5559
*
5660
* @param <I> the type of object the returned transformer should "accept"
5761
* @param <O> the type of object the returned transformer should "produce"

0 commit comments

Comments
 (0)