From 542e0700326663f68491ace61a2612bc70783595 Mon Sep 17 00:00:00 2001 From: jochen Date: Sun, 7 Feb 1999 19:48:09 +0000 Subject: [PATCH] new matchable operator git-svn-id: https://svn.code.sf.net/p/jode/code/trunk@219 379699f6-c40d-0410-875b-85095c16579e --- jode/jode/expr/ConstructorOperator.java | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/jode/jode/expr/ConstructorOperator.java b/jode/jode/expr/ConstructorOperator.java index 1a90090..d68cd55 100644 --- a/jode/jode/expr/ConstructorOperator.java +++ b/jode/jode/expr/ConstructorOperator.java @@ -22,7 +22,7 @@ import jode.Type; import jode.MethodType; public class ConstructorOperator extends Operator - implements CombineableOperator { + implements MatchableOperator { MethodType methodType; Type classType; @@ -43,13 +43,6 @@ public class ConstructorOperator extends Operator return expr.containsConflictingLoad(this); } - /** - * Makes a non void expression out of this invoke instruction. - */ - public void makeNonVoid() { - throw new jode.AssertError("already non void"); - } - /** * Checks if the value of the operator can be changed by this expression. */