Remove printing "xxx" in FullMultinameAvm2item

This commit is contained in:
Jindra Petřík
2022-12-17 23:53:28 +01:00
parent b832076cbf
commit 2b2a9bfbed

View File

@@ -55,9 +55,6 @@ public class FullMultinameAVM2Item extends AVM2Item {
this.namespace = null;
this.property = property;
this.resolvedMultinameName = resolvedMultinameName;
if (property == false) {
System.err.println("xxx");
}
}
public FullMultinameAVM2Item(boolean property, GraphSourceItem instruction, GraphSourceItem lineStartIns, int multinameIndex, String resolvedMultinameName) {
@@ -67,9 +64,6 @@ public class FullMultinameAVM2Item extends AVM2Item {
this.name = null;
this.namespace = null;
this.property = property;
if (property == false) {
System.err.println("xxx");
}
}
public FullMultinameAVM2Item(boolean property, GraphSourceItem instruction, GraphSourceItem lineStartIns, int multinameIndex, String resolvedMultinameName, GraphTargetItem name, GraphTargetItem namespace) {
@@ -79,9 +73,6 @@ public class FullMultinameAVM2Item extends AVM2Item {
this.namespace = namespace;
this.property = property;
this.resolvedMultinameName = resolvedMultinameName;
if (property == false) {
System.err.println("xxx");
}
}
@Override