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
stable
jochen 26 years ago
parent eac030bc79
commit 48c06b2302
  1. 3
      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 + ";");
}
}

Loading…
Cancel
Save