Added Optimize ABC action (remove unused items) - available through ABC Explorer

Fixed Outputstreams position calculation (ABCOutputStream, ...)
This commit is contained in:
Jindra Petřík
2024-07-29 10:48:50 +02:00
parent 7b609e08e8
commit 0e6c092e6a
18 changed files with 614 additions and 49 deletions

View File

@@ -145,6 +145,13 @@ public class SWFOutputStream extends OutputStream {
pos += b.length;
}
@Override
public void write(byte[] b, int off, int len) throws IOException {
alignByte();
os.write(b, off, len);
pos += len;
}
public void write(ByteArrayRange b) throws IOException {
alignByte();
os.write(b.getArray(), b.getPos(), b.getLength());