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

@@ -131,7 +131,6 @@ public class ZipUtils {
{ {
ZipEntry zipEntry = zipEntries.nextElement(); ZipEntry zipEntry = zipEntries.nextElement();
File newFile = new File(destination, zipEntry.getName()); File newFile = new File(destination, zipEntry.getName());
System.out.println("Got file " + newFile.getAbsolutePath());
//create sub directories //create sub directories
newFile.getParentFile().mkdirs(); newFile.getParentFile().mkdirs();

View File

@@ -1,6 +1,5 @@
package com.flaremicro.test.util; package com.flaremicro.test.util;
import java.io.EOFException;
import java.io.IOException; import java.io.IOException;
import java.io.InputStream; import java.io.InputStream;
import java.io.OutputStream; import java.io.OutputStream;
@@ -28,7 +27,7 @@ public class InOutBuffer {
synchronized (buffer) synchronized (buffer)
{ {
if (buffer.size() <= 0) if (buffer.size() <= 0)
throw new EOFException("End of file"); return -1;
return buffer.remove(0) & 0xFF; return buffer.remove(0) & 0xFF;
} }
} }