Re: [j-t-c] HexUtils.java no longer compiles for me...

2002-01-19 Thread Remy Maucherat

 without explicitly casting each entry in the HEX array to a byte, like
this:

 public static final byte[] HEX =
 { (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' };

 any objections to my checking this in?

+1.
Note: It builds fine for me.

Remy


--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




RE: [j-t-c] HexUtils.java no longer compiles for me...

2002-01-19 Thread Kevin Seguin

 
  without explicitly casting each entry in the HEX array to a 
 byte, like
 this:
 
  public static final byte[] HEX =
  { (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' };
 
  any objections to my checking this in?
 
 +1.
 Note: It builds fine for me.
 

it turns out that i was using an older version of jikes than i thought -
1.12 vs. 1.14.  the current code builds fine with jikes 1.14.  so, unless
somebody else runs into the same problem, i don't think there's any reason
to make the change.

-kevin.

--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]