Fixed code style

This commit is contained in:
Jindra Petřík
2024-08-05 11:17:25 +02:00
parent cc34fae1c5
commit 1d9329e9be
363 changed files with 8559 additions and 8277 deletions
@@ -61,14 +61,14 @@ public class FLVOutputStream extends OutputStream {
alignByte();
os.write(b);
pos += b.length;
}
}
@Override
public void write(byte[] b, int off, int len) throws IOException {
alignByte();
os.write(b, off, len);
pos += len;
}
}
private void alignByte() throws IOException {
if (bitPos > 0) {