mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-25 04:20:51 +00:00
double spaces around in and instanceof keywords fixed
This commit is contained in:
@@ -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");
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -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
|
||||
|
||||
+1
-1
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user