Skip to content

Commit

Permalink
Javadoc, no need to abbreviate in documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Oct 17, 2023
1 parent eee1401 commit 10227e6
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -85,11 +85,11 @@ public static int decode(final byte[] data, final OutputStream out) throws IOExc
}

/**
* Converts a hex digit to the binary value it represents.
* Converts a hexadecimal digit to the binary value it represents.
*
* @param b the ascii hex byte to convert (0-0, A-F, a-f)
* @return the int value of the hex byte, 0-15
* @throws IOException if the byte is not a valid hex digit.
* @param b the ascii hexadecimal byte to convert (0-0, A-F, a-f)
* @return the int value of the hexadecimal byte, 0-15
* @throws IOException if the byte is not a valid hexadecimal digit.
*/
private static int hexToBinary(final byte b) throws IOException {
// CHECKSTYLE IGNORE MagicNumber FOR NEXT 1 LINE
Expand Down

0 comments on commit 10227e6

Please sign in to comment.