double spaces around in and instanceof keywords fixed

This commit is contained in:
Honfika
2014-03-01 17:23:45 +01:00
parent 39c21f6ce4
commit 9b0cad6f01
4 changed files with 4 additions and 4 deletions
@@ -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");
}
}
@@ -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");
}
}
@@ -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
@@ -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