mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-07-15 00:28:58 +00:00
Fixed #1908 Slow commandline opening SWF
This commit is contained in:
@@ -69,5 +69,15 @@ public class StdInAwareFileInputStream extends InputStream implements AutoClosea
|
||||
@Override
|
||||
public void close() throws IOException {
|
||||
is.close();
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public int read(byte[] b) throws IOException {
|
||||
return is.read(b);
|
||||
}
|
||||
|
||||
@Override
|
||||
public int read(byte[] b, int off, int len) throws IOException {
|
||||
return is.read(b, off, len);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user