Removed excessive print
All checks were successful
Flare Microsystems Git Repository/CrossJeeves/pipeline/head This commit looks good
Flare Microsystems Git/FlarePublic/CrossJeeves/pipeline/head This commit looks good

This commit is contained in:
Flare Microsystems
2024-12-01 16:49:37 -08:00
parent 39baf6b55d
commit 0d10fb2528
2 changed files with 2 additions and 4 deletions

View File

@@ -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;
}
}