tobrien 2003/02/25 00:26:18
Modified: codec/src/java/org/apache/commons/codec/binary Hex.java
Log:
uppercase hex encoding was an ill-informed decision, Hex will produce lowercase hex
digits
Revision Changes Path
1.4 +1 -1
jakarta-commons-sandbox/codec/src/java/org/apache/commons/codec/binary/Hex.java
Index: Hex.java
===================================================================
RCS file:
/home/cvs/jakarta-commons-sandbox/codec/src/java/org/apache/commons/codec/binary/Hex.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- Hex.java 25 Feb 2003 08:19:40 -0000 1.3
+++ Hex.java 25 Feb 2003 08:26:18 -0000 1.4
@@ -66,7 +66,7 @@
/** for building output as Hex */
private static final char[] digits = {
'0', '1', '2', '3', '4', '5', '6', '7',
- '8', '9', 'A', 'B', 'C', 'D', 'E', 'F'
+ '8', '9', 'a', 'b', 'c', 'd', 'e', 'f'
};
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]