diff --git a/jode/jode/expr/NewConstructorOperator.java b/jode/jode/expr/NewConstructorOperator.java index 01256c7..0707f36 100644 --- a/jode/jode/expr/NewConstructorOperator.java +++ b/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; }