You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by re...@apache.org on 2002/01/23 19:00:11 UTC

cvs commit: jakarta-tomcat-connectors/util/java/org/apache/tomcat/util/buf HexUtils.java

remm        02/01/23 10:00:11

  Modified:    util/java/org/apache/tomcat/util/buf HexUtils.java
  Log:
  - Fix possible build problem, reported by Kevin Seguin.
  
  Revision  Changes    Path
  1.6       +3 -2      jakarta-tomcat-connectors/util/java/org/apache/tomcat/util/buf/HexUtils.java
  
  Index: HexUtils.java
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-connectors/util/java/org/apache/tomcat/util/buf/HexUtils.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- HexUtils.java	9 Jan 2002 23:23:24 -0000	1.5
  +++ HexUtils.java	23 Jan 2002 18:00:11 -0000	1.6
  @@ -104,8 +104,9 @@
        * Table for DEC to HEX byte translation.
        */
       public static final byte[] HEX = 
  -    { '0', '1', '2', '3', '4', '5', '6', 
  -      '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f' };
  +    { (byte) '0', (byte) '1', (byte) '2', (byte) '3', (byte) '4', (byte) '5', 
  +      (byte) '6', (byte) '7', (byte) '8', (byte) '9', (byte) 'a', (byte) 'b', 
  +      (byte) 'c', (byte) 'd', (byte) 'e', (byte) 'f' };
   
   
       /**
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>