From 7037d7ff0262cbbd006977599d51903bf0668a8e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jindra=20Pet=C5=99=C3=ADk?= Date: Sun, 24 Jan 2021 19:43:36 +0100 Subject: [PATCH] Set slot ins fix --- .../decompiler/flash/abc/avm2/instructions/other/SetSlotIns.java | 1 - 1 file changed, 1 deletion(-) diff --git a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/abc/avm2/instructions/other/SetSlotIns.java b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/abc/avm2/instructions/other/SetSlotIns.java index c319e1aa0..674a89c49 100644 --- a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/abc/avm2/instructions/other/SetSlotIns.java +++ b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/abc/avm2/instructions/other/SetSlotIns.java @@ -74,7 +74,6 @@ public class SetSlotIns extends InstructionDefinition implements SetTypeIns { if (obj instanceof ExceptionAVM2Item) { slotname = localData.getConstants().getMultiname(((ExceptionAVM2Item) obj).exception.name_index); } else if ((obj instanceof ThisAVM2Item) || (obj instanceof ClassAVM2Item) || (obj instanceof ScriptAVM2Item)) { - slotname = ((ThisAVM2Item) obj).classMultiname; List traits = localData.getScriptInfo().get(localData.scriptIndex).traits.traits; for (int t = 0; t < traits.size(); t++) { Trait tr = traits.get(t);