Return-Path: Delivered-To: apmail-jakarta-commons-dev-archive@apache.org Received: (qmail 98190 invoked from network); 25 Feb 2003 08:26:24 -0000 Received: from exchange.sun.com (192.18.33.10) by daedalus.apache.org with SMTP; 25 Feb 2003 08:26:24 -0000 Received: (qmail 20734 invoked by uid 97); 25 Feb 2003 08:28:11 -0000 Delivered-To: qmlist-jakarta-archive-commons-dev@nagoya.betaversion.org Received: (qmail 20727 invoked from network); 25 Feb 2003 08:28:10 -0000 Received: from daedalus.apache.org (HELO apache.org) (208.185.179.12) by nagoya.betaversion.org with SMTP; 25 Feb 2003 08:28:10 -0000 Received: (qmail 97999 invoked by uid 500); 25 Feb 2003 08:26:20 -0000 Mailing-List: contact commons-dev-help@jakarta.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Subscribe: List-Help: List-Post: List-Id: "Jakarta Commons Developers List" Reply-To: "Jakarta Commons Developers List" Delivered-To: mailing list commons-dev@jakarta.apache.org Received: (qmail 97988 invoked by uid 500); 25 Feb 2003 08:26:20 -0000 Received: (qmail 97983 invoked from network); 25 Feb 2003 08:26:19 -0000 Received: from icarus.apache.org (208.185.179.13) by daedalus.apache.org with SMTP; 25 Feb 2003 08:26:19 -0000 Received: (qmail 83459 invoked by uid 1628); 25 Feb 2003 08:26:18 -0000 Date: 25 Feb 2003 08:26:18 -0000 Message-ID: <20030225082618.83458.qmail@icarus.apache.org> From: tobrien@apache.org To: jakarta-commons-sandbox-cvs@apache.org Subject: cvs commit: jakarta-commons-sandbox/codec/src/java/org/apache/commons/codec/binary Hex.java X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N 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: commons-dev-unsubscribe@jakarta.apache.org For additional commands, e-mail: commons-dev-help@jakarta.apache.org