unnecessary dump info setting removed

This commit is contained in:
honfika
2014-08-13 19:23:43 +02:00
parent 0baab2962f
commit 2492cd9d34
7 changed files with 3 additions and 22 deletions

View File

@@ -3288,9 +3288,9 @@ public class SWFInputStream implements AutoCloseable {
public SWFInputStream getLimitedStream(int limit) throws IOException {
SWFInputStream sis = new SWFInputStream(swf, is.getAllRead(), startingPos, (int) (is.getPos() + limit));
if (Configuration.lazyDumpInfoCollecting.get()) {
sis.dumpInfo = dumpInfo;
}
// uncomment the following line to turn off lazy dump info collecting
//sis.dumpInfo = dumpInfo;
sis.seek(is.getPos() + startingPos);
return sis;
}