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:
@ -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;
|
||||||
@ -191,4 +191,4 @@ class LogWriter implements Runnable {
|
|||||||
}
|
}
|
||||||
return buf.toString();
|
return buf.toString();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user