Use {@code } instead <code>.

This commit is contained in:
Arturo Bernal 2021-11-06 08:13:55 +01:00 committed by Oleg Kalnichevski
parent 1eb2d40df1
commit 0289c78e8d
2 changed files with 3 additions and 3 deletions

View File

@ -157,7 +157,7 @@ class HttpRFC7578Multipart extends AbstractMultipartFormat {
private static final int RADIX = 16; private static final int RADIX = 16;
/** /**
* Returns the numeric value of the character <code>b</code> in radix 16. * Returns the numeric value of the character {@code b} in radix 16.
* *
* @param b * @param b
* The byte to be converted. * The byte to be converted.

View File

@ -443,10 +443,10 @@ public class DigestScheme implements AuthScheme, Serializable {
/** /**
* Encodes the 128 bit (16 bytes) MD5 digest into a 32 characters long * Encodes the 128 bit (16 bytes) MD5 digest into a 32 characters long
* <CODE>String</CODE> according to RFC 2617. * {@code String} according to RFC 2617.
* *
* @param binaryData array containing the digest * @param binaryData array containing the digest
* @return encoded MD5, or <CODE>null</CODE> if encoding failed * @return encoded MD5, or {@code null} if encoding failed
*/ */
static String formatHex(final byte[] binaryData) { static String formatHex(final byte[] binaryData) {
final int n = binaryData.length; final int n = binaryData.length;