diff --git a/trunk/src/com/jpexs/decompiler/flash/abc/avm2/model/operations/InAVM2Item.java b/trunk/src/com/jpexs/decompiler/flash/abc/avm2/model/operations/InAVM2Item.java index fc06bf4bc..fe355233c 100644 --- a/trunk/src/com/jpexs/decompiler/flash/abc/avm2/model/operations/InAVM2Item.java +++ b/trunk/src/com/jpexs/decompiler/flash/abc/avm2/model/operations/InAVM2Item.java @@ -23,6 +23,6 @@ import com.jpexs.decompiler.graph.model.BinaryOpItem; public class InAVM2Item extends BinaryOpItem { public InAVM2Item(AVM2Instruction instruction, GraphTargetItem name, GraphTargetItem object) { - super(instruction, PRECEDENCE_RELATIONAL, name, object, " in "); + super(instruction, PRECEDENCE_RELATIONAL, name, object, "in"); } } diff --git a/trunk/src/com/jpexs/decompiler/flash/abc/avm2/model/operations/InstanceOfAVM2Item.java b/trunk/src/com/jpexs/decompiler/flash/abc/avm2/model/operations/InstanceOfAVM2Item.java index 8431e6ac2..e8110c91a 100644 --- a/trunk/src/com/jpexs/decompiler/flash/abc/avm2/model/operations/InstanceOfAVM2Item.java +++ b/trunk/src/com/jpexs/decompiler/flash/abc/avm2/model/operations/InstanceOfAVM2Item.java @@ -23,6 +23,6 @@ import com.jpexs.decompiler.graph.model.BinaryOpItem; public class InstanceOfAVM2Item extends BinaryOpItem { public InstanceOfAVM2Item(AVM2Instruction instruction, GraphTargetItem value, GraphTargetItem type) { - super(instruction, PRECEDENCE_RELATIONAL, value, type, " instanceof "); + super(instruction, PRECEDENCE_RELATIONAL, value, type, "instanceof"); } } diff --git a/trunk/src/com/jpexs/decompiler/flash/action/model/operations/InActionItem.java b/trunk/src/com/jpexs/decompiler/flash/action/model/operations/InActionItem.java index b884acb54..7e3a0c889 100644 --- a/trunk/src/com/jpexs/decompiler/flash/action/model/operations/InActionItem.java +++ b/trunk/src/com/jpexs/decompiler/flash/action/model/operations/InActionItem.java @@ -25,7 +25,7 @@ import java.util.Set; public class InActionItem extends BinaryOpItem { public InActionItem(GraphSourceItem instruction, ActionItem name, ActionItem object) { - super(instruction, PRECEDENCE_RELATIONAL, name, object, " in "); + super(instruction, PRECEDENCE_RELATIONAL, name, object, "in"); } @Override diff --git a/trunk/src/com/jpexs/decompiler/flash/action/model/operations/InstanceOfActionItem.java b/trunk/src/com/jpexs/decompiler/flash/action/model/operations/InstanceOfActionItem.java index 0c2bb0c57..64bf49486 100644 --- a/trunk/src/com/jpexs/decompiler/flash/action/model/operations/InstanceOfActionItem.java +++ b/trunk/src/com/jpexs/decompiler/flash/action/model/operations/InstanceOfActionItem.java @@ -28,7 +28,7 @@ import java.util.Set; public class InstanceOfActionItem extends BinaryOpItem { public InstanceOfActionItem(GraphSourceItem instruction, GraphTargetItem value, GraphTargetItem type) { - super(instruction, PRECEDENCE_RELATIONAL, value, type, " instanceof "); + super(instruction, PRECEDENCE_RELATIONAL, value, type, "instanceof"); } @Override