From 3c0d417abbbdb1af551ba505f3bf247701dff110 Mon Sep 17 00:00:00 2001 From: Gary Gregory Date: Thu, 25 Jan 2024 09:28:26 -0500 Subject: [PATCH] Normalize comment Comment empty block --- .../org/apache/commons/lang3/exception/ExceptionUtils.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/java/org/apache/commons/lang3/exception/ExceptionUtils.java b/src/main/java/org/apache/commons/lang3/exception/ExceptionUtils.java index cd355afca..d847f548d 100644 --- a/src/main/java/org/apache/commons/lang3/exception/ExceptionUtils.java +++ b/src/main/java/org/apache/commons/lang3/exception/ExceptionUtils.java @@ -1110,9 +1110,10 @@ public static R wrapAndThrow(final Throwable throwable) { * Public constructor allows an instance of {@link ExceptionUtils} to be created, although that is not * normally necessary. * - * @deprecated Will be private in 3.0. + * @deprecated TODO Make private in 4.0. */ @Deprecated public ExceptionUtils() { + // empty } }