mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-27 18:20:43 +00:00
Fixed code style
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user