InstructionContainer

git-svn-id: https://svn.code.sf.net/p/jode/code/trunk@30 379699f6-c40d-0410-875b-85095c16579e
stable
delwi 26 years ago
parent ebb3fbd4cb
commit f3a339c394
  1. 9
      jode/jode/flow/ThrowBlock.java

@ -24,14 +24,9 @@ import jode.Instruction;
/** /**
* This is the structured block for an Throw block. * This is the structured block for an Throw block.
*/ */
public class ThrowBlock extends StructuredBlock { public class ThrowBlock extends InstructionContainer {
Instruction instr = null;
public ThrowBlock() {
}
public ThrowBlock(Instruction instr) { public ThrowBlock(Instruction instr) {
this.instr = instr; super(instr);
} }
public void dumpInstruction(TabbedPrintWriter writer) public void dumpInstruction(TabbedPrintWriter writer)

Loading…
Cancel
Save