From 5846e86a2f0b04438f8fdcf7493a994b2121e2c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jindra=20Pet=C5=99=C3=ADk?= Date: Wed, 27 Sep 2023 23:30:54 +0200 Subject: [PATCH] include without parenthesis --- .../src/com/jpexs/decompiler/flash/abc/ScriptPack.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/abc/ScriptPack.java b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/abc/ScriptPack.java index 6bd55376b..ef262c67a 100644 --- a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/abc/ScriptPack.java +++ b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/abc/ScriptPack.java @@ -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(); }