mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-25 00:42:52 +00:00
faster timeline construction
This commit is contained in:
@@ -161,7 +161,8 @@ public class TagTreeModel implements TreeModel {
|
||||
}
|
||||
|
||||
Timeline timeline = swf.getTimeline();
|
||||
for (int i = 0; i < timeline.getFrameCount(); i++) {
|
||||
int frameCount = timeline.getFrameCount();
|
||||
for (int i = 0; i < frameCount; i++) {
|
||||
frames.add(timeline.getFrames().get(i));
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user