From 53110f0cd4b819dcfbfb6f496893a50b2b78c2c7 Mon Sep 17 00:00:00 2001 From: jochen Date: Thu, 6 Aug 1998 09:03:58 +0000 Subject: [PATCH] xxx git-svn-id: https://svn.code.sf.net/p/jode/code/trunk@4 379699f6-c40d-0410-875b-85095c16579e --- jode/jode/expr/NewConstructorOperator.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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; }