mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-25 20:31:01 +00:00
AS3: better imports
AS3: Types with same name shown with namespace
This commit is contained in:
@@ -297,18 +297,18 @@ public class SWF {
|
||||
}
|
||||
}
|
||||
};
|
||||
List<DoABCTag> abcTags=new ArrayList<DoABCTag>();
|
||||
List<DoABCTag> abcTags = new ArrayList<DoABCTag>();
|
||||
for (Tag t : tags) {
|
||||
if (t instanceof DoABCTag) {
|
||||
abcTags.add((DoABCTag)t);
|
||||
abcTags.add((DoABCTag) t);
|
||||
asV3Found = true;
|
||||
}
|
||||
}
|
||||
for(DoABCTag t:abcTags){
|
||||
t.abc.addEventListener(evl);
|
||||
t.abc.export(outdir, isPcode,abcTags);
|
||||
for (DoABCTag t : abcTags) {
|
||||
t.abc.addEventListener(evl);
|
||||
t.abc.export(outdir, isPcode, abcTags);
|
||||
}
|
||||
|
||||
|
||||
if (!asV3Found) {
|
||||
List<Object> list2 = new ArrayList<Object>();
|
||||
list2.addAll(tags);
|
||||
|
||||
Reference in New Issue
Block a user