include without parenthesis

This commit is contained in:
Jindra Petřík
2023-09-27 23:30:54 +02:00
parent a30bc9136f
commit 5846e86a2f

View File

@@ -211,7 +211,7 @@ public class ScriptPack extends AS3ClassTreeItem {
if (!isSimple && traitIndices.isEmpty()) {
for (Trait t : abc.script_info.get(scriptIndex).traits.traits) {
String fullName = t.getName(abc).getNameWithNamespace(abc.constants, false).toPrintableString(true);
writer.appendNoHilight("include(\"" + fullName.replace(".", "/") + ".as\");").newLine();
writer.appendNoHilight("include \"" + fullName.replace(".", "/") + ".as\";").newLine();
}
writer.newLine();
}