removed (likely already ignored by the compiler) op. force of habit from dealing with stream.read() i suppose.

thanks mihi
This commit is contained in:
jrandom
2004-06-20 03:48:16 +00:00
committed by zzz
parent 2a07ceba62
commit 232f6f158d

View File

@ -100,7 +100,7 @@ class LogWriter implements Runnable {
byte b[] = new byte[val.length()]; byte b[] = new byte[val.length()];
for (int i = 0; i < b.length; i++) for (int i = 0; i < b.length; i++)
b[i] = (byte)(val.charAt(i) & 0xFF); b[i] = (byte)val.charAt(i);
try { try {
_currentOut.write(b); _currentOut.write(b);
_numBytesInCurrentFile += b.length; _numBytesInCurrentFile += b.length;