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-codec.git
The following commit(s) were added to refs/heads/master by this push: new 867eafc0 Use Javadoc @code 867eafc0 is described below commit 867eafc0877d3c78dd59b6721c78a977dd0245fe Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Mon Jul 29 07:58:36 2024 -0400 Use Javadoc @code --- src/main/java/org/apache/commons/codec/DecoderException.java | 4 ++-- src/main/java/org/apache/commons/codec/EncoderException.java | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/org/apache/commons/codec/DecoderException.java b/src/main/java/org/apache/commons/codec/DecoderException.java index fa822090..4f2bcc89 100644 --- a/src/main/java/org/apache/commons/codec/DecoderException.java +++ b/src/main/java/org/apache/commons/codec/DecoderException.java @@ -69,8 +69,8 @@ public class DecoderException extends Exception { } /** - * Constructs a new exception with the specified cause and a detail message of <code>(cause==null ? - * null : cause.toString())</code> (which typically contains the class and detail message of {@code cause}). + * Constructs a new exception with the specified cause and a detail message of {@code (cause==null ? + * null : cause.toString())} (which typically contains the class and detail message of {@code cause}). * This constructor is useful for exceptions that are little more than wrappers for other throwables. * * @param cause diff --git a/src/main/java/org/apache/commons/codec/EncoderException.java b/src/main/java/org/apache/commons/codec/EncoderException.java index 039925cb..d5e7141e 100644 --- a/src/main/java/org/apache/commons/codec/EncoderException.java +++ b/src/main/java/org/apache/commons/codec/EncoderException.java @@ -71,8 +71,8 @@ public class EncoderException extends Exception { } /** - * Constructs a new exception with the specified cause and a detail message of <code>(cause==null ? - * null : cause.toString())</code> (which typically contains the class and detail message of {@code cause}). + * Constructs a new exception with the specified cause and a detail message of {@code (cause==null ? + * null : cause.toString())} (which typically contains the class and detail message of {@code cause}). * This constructor is useful for exceptions that are little more than wrappers for other throwables. * * @param cause