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:
parent
2e9a359fb5
commit
cf832560dd
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue