Removed excessive print
This commit is contained in:
@@ -1,6 +1,5 @@
|
||||
package com.flaremicro.test.util;
|
||||
|
||||
import java.io.EOFException;
|
||||
import java.io.IOException;
|
||||
import java.io.InputStream;
|
||||
import java.io.OutputStream;
|
||||
@@ -28,7 +27,7 @@ public class InOutBuffer {
|
||||
synchronized (buffer)
|
||||
{
|
||||
if (buffer.size() <= 0)
|
||||
throw new EOFException("End of file");
|
||||
return -1;
|
||||
return buffer.remove(0) & 0xFF;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user