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.
*/
public class ThrowBlock extends StructuredBlock {
Instruction instr = null;
public ThrowBlock() {
}
public class ThrowBlock extends InstructionContainer {
public ThrowBlock(Instruction instr) {
this.instr = instr;
super(instr);
}
public void dumpInstruction(TabbedPrintWriter writer)

Loading…
Cancel
Save