Skip to content

Commit 867eafc

Browse files
committed
Use Javadoc @code
1 parent cd2b090 commit 867eafc

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/main/java/org/apache/commons/codec/DecoderException.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@ public DecoderException(final String message, final Throwable cause) {
6969
}
7070

7171
/**
72-
* Constructs a new exception with the specified cause and a detail message of <code>(cause==null ?
73-
* null : cause.toString())</code> (which typically contains the class and detail message of {@code cause}).
72+
* Constructs a new exception with the specified cause and a detail message of {@code (cause==null ?
73+
* null : cause.toString())} (which typically contains the class and detail message of {@code cause}).
7474
* This constructor is useful for exceptions that are little more than wrappers for other throwables.
7575
*
7676
* @param cause

src/main/java/org/apache/commons/codec/EncoderException.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,8 @@ public EncoderException(final String message, final Throwable cause) {
7171
}
7272

7373
/**
74-
* Constructs a new exception with the specified cause and a detail message of <code>(cause==null ?
75-
* null : cause.toString())</code> (which typically contains the class and detail message of {@code cause}).
74+
* Constructs a new exception with the specified cause and a detail message of {@code (cause==null ?
75+
* null : cause.toString())} (which typically contains the class and detail message of {@code cause}).
7676
* This constructor is useful for exceptions that are little more than wrappers for other throwables.
7777
*
7878
* @param cause

0 commit comments

Comments
 (0)