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 + ";"); } }