git-svn-id: https://svn.code.sf.net/p/jode/code/trunk@4 379699f6-c40d-0410-875b-85095c16579e
stable
jochen 26 years ago
parent 78bb1b0a22
commit 53110f0cd4
  1. 5
      jode/jode/expr/NewConstructorOperator.java

@ -4,9 +4,8 @@ import sun.tools.java.Type;
public class NewConstructorOperator extends NoArgOperator {
Expression constructor;
public NewConstructorOperator(int addr, int length, Type type,
Expression expr) {
super(addr,length, type);
public NewConstructorOperator(Type type, Expression expr) {
super(type);
this.constructor = expr;
}

Loading…
Cancel
Save