From 48c06b2302cb0a24b5585cf6d2c2567adaab9912 Mon Sep 17 00:00:00 2001 From: jochen Date: Tue, 27 Apr 1999 18:11:29 +0000 Subject: [PATCH] simplify() now in extra method instr can't be null git-svn-id: https://svn.code.sf.net/p/jode/code/trunk@638 379699f6-c40d-0410-875b-85095c16579e --- jode/jode/flow/ThrowBlock.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/jode/jode/flow/ThrowBlock.java b/jode/jode/flow/ThrowBlock.java index de2ba93..26b52e0 100644 --- a/jode/jode/flow/ThrowBlock.java +++ b/jode/jode/flow/ThrowBlock.java @@ -32,7 +32,6 @@ public class ThrowBlock extends ReturnBlock { public void dumpInstruction(TabbedPrintWriter writer) throws java.io.IOException { - writer.println("throw" + - (instr == null ? "" : " " + instr.simplify()) + ";"); + writer.println("throw " + instr + ";"); } }