Fixed #1908 Slow commandline opening SWF

This commit is contained in:
Jindra Petřík
2022-12-21 17:06:46 +01:00
parent f8488683cd
commit c4befddd5f
3 changed files with 14 additions and 2 deletions

View File

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