aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/org/apache/commons/lang3/function
diff options
context:
space:
mode:
authorGary Gregory <garydgregory@gmail.com>2022-08-23 10:17:50 -0400
committerGary Gregory <garydgregory@gmail.com>2022-08-23 10:46:01 -0400
commit1c2397eb4774032eedd4223b7d3b9ec366d3b685 (patch)
tree19517082b90e6f3ec8b21c60d98c77f15a68aa36 /src/main/java/org/apache/commons/lang3/function
parent21da81bb4d9d1080716fe4f75eddc96a8a4e27a7 (diff)
downloadapache-commons-lang-1c2397eb4774032eedd4223b7d3b9ec366d3b685.tar.gz
First sentence of a Javadoc comment does not need p tags
Diffstat (limited to 'src/main/java/org/apache/commons/lang3/function')
-rw-r--r--src/main/java/org/apache/commons/lang3/function/Failable.java2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/main/java/org/apache/commons/lang3/function/Failable.java b/src/main/java/org/apache/commons/lang3/function/Failable.java
index 03db362ec..efe3f707a 100644
--- a/src/main/java/org/apache/commons/lang3/function/Failable.java
+++ b/src/main/java/org/apache/commons/lang3/function/Failable.java
@@ -381,13 +381,11 @@ public class Failable {
}
/**
- * <p>
* Rethrows a {@link Throwable} as an unchecked exception. If the argument is already unchecked, namely a
* {@link RuntimeException} or {@link Error} then the argument will be rethrown without modification. If the
* exception is {@link IOException} then it will be wrapped into a {@link UncheckedIOException}. In every other
* cases the exception will be wrapped into a {@code
* UndeclaredThrowableException}
- * </p>
*
* <p>
* Note that there is a declared return type for this method, even though it never returns. The reason for that is