unused imports removed, code formatting, recompile test reverted

This commit is contained in:
Honfika
2014-03-01 20:15:37 +01:00
parent 58cb55e241
commit 156c9c7dc1
47 changed files with 148 additions and 177 deletions

View File

@@ -859,7 +859,7 @@ public class SWFInputStream extends InputStream {
while (true) {
long pos = getPos();
try {
tag = readTag(swf, level, pos, parseTags && !parallel, parallel, skipUnusualTags, gfx);
tag = readTag(swf, level, pos, parseTags && !parallel, parallel, skipUnusualTags, gfx);
} catch (EOFException | EndOfStreamException ex) {
tag = null;
}
@@ -947,7 +947,7 @@ public class SWFInputStream extends InputStream {
} catch (ExecutionException e) {
Logger.getLogger(SWFInputStream.class.getName()).log(Level.SEVERE, "Error during tag reading", e);
}
}
}
executor.shutdown();
}