FileAttribute tag name in dumpview fixed

This commit is contained in:
honfika
2014-08-24 11:14:33 +02:00
parent 6a2f1027b8
commit f9a2ec747e
@@ -1091,8 +1091,13 @@ public class SWFInputStream implements AutoCloseable {
Future<Tag> future = executor.submit(new TagResolutionTask((TagStub) tag, di, level, parallel, skipUnusualTags));
futureResults.add(future);
} else {
Future<Tag> future = new ImmediateFuture(tag);
Future<Tag> future = new ImmediateFuture<Tag>(tag);
futureResults.add(future);
if (!(tag instanceof TagStub)) {
if (di != null) {
di.name = tag.getName();
}
}
}
if (tag.getId() == EndTag.ID) {