Format to 120 line length.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1606076 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary D. Gregory 2014-06-27 12:56:14 +00:00
parent 2e9a359fb5
commit cf832560dd
1 changed files with 1 additions and 3 deletions

View File

@ -98,9 +98,7 @@ public class Conversion {
public static int hexDigitToInt(final char hexDigit) {
final int digit = Character.digit(hexDigit, 16);
if (digit < 0) {
throw new IllegalArgumentException("Cannot interpret '"
+ hexDigit
+ "' as a hexadecimal digit");
throw new IllegalArgumentException("Cannot interpret '" + hexDigit + "' as a hexadecimal digit");
}
return digit;
}