From f53c0890947a12b520418f3b32510ba1bfe03000 Mon Sep 17 00:00:00 2001 From: jochen Date: Sun, 7 Feb 1999 19:36:23 +0000 Subject: [PATCH] new constructor git-svn-id: https://svn.code.sf.net/p/jode/code/trunk@211 379699f6-c40d-0410-875b-85095c16579e --- jode/jode/flow/ThrowBlock.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jode/jode/flow/ThrowBlock.java b/jode/jode/flow/ThrowBlock.java index 03d0ffc..5b438a4 100644 --- a/jode/jode/flow/ThrowBlock.java +++ b/jode/jode/flow/ThrowBlock.java @@ -25,8 +25,8 @@ import jode.decompiler.Expression; * This is the structured block for an Throw block. */ public class ThrowBlock extends ReturnBlock { - public ThrowBlock(Expression instr, Jump jump) { - super(instr, jump); + public ThrowBlock(Expression instr) { + super(instr); } public void dumpInstruction(TabbedPrintWriter writer)