removed count

git-svn-id: https://svn.code.sf.net/p/jode/code/trunk@221 379699f6-c40d-0410-875b-85095c16579e
stable
jochen 26 years ago
parent e8945b01b3
commit 17069b2f15
  1. 10
      jode/jode/expr/PopOperator.java

@ -21,12 +21,10 @@ package jode.decompiler;
import jode.Type;
public class PopOperator extends SimpleOperator {
int count;
public PopOperator(int count) {
public PopOperator(Type argtype) {
super(Type.tVoid, 0, 1);
operandTypes[0] = Type.tUnknown;
this.count = count;
operandTypes[0] = argtype;
}
public int getPriority() {
@ -37,10 +35,6 @@ public class PopOperator extends SimpleOperator {
return 0;
}
public int getCount() {
return count;
}
public String toString(String[] operands) {
return operands[0];
}

Loading…
Cancel
Save