git-svn-id: https://svn.code.sf.net/p/jode/code/trunk@104 379699f6-c40d-0410-875b-85095c16579e
stable
jochen 26 years ago
parent e6b2749f4b
commit 9bc2bc279a
  1. 4
      jode/jode/flow/FlowBlock.java

@ -89,7 +89,7 @@ public class FlowBlock {
* the elements is the first jump to that dictionary. The other
* jumps are accessible via the jump.next field.
*/
Dictionary successors = new Hashtable();
Dictionary successors = new SimpleDictionary();
/**
* This is a vector of flow blocks, which reference this block.
@ -1185,7 +1185,7 @@ public class FlowBlock {
destJumps = destJumps.next;
}
if (destJumps == null)
throw new AssertError("removing non existent jump");
throw new AssertError(""+addr+": removing non existent jump: " + jump);
if (prev != null)
prev.next = destJumps.next;
else {

Loading…
Cancel
Save