AS3: better imports

AS3: Types with same name shown with namespace
This commit is contained in:
Jindra Pet��k
2012-12-30 19:54:09 +01:00
parent 56f083fdb8
commit 30337c38c8
254 changed files with 770 additions and 661 deletions
+6 -6
View File
@@ -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);