removed the attachment crap

git-svn-id: https://svn.code.sf.net/p/jode/code/trunk@61 379699f6-c40d-0410-875b-85095c16579e
stable
jochen 26 years ago
parent 014b9c7107
commit a75ab0fb9f
  1. 15
      jode/jode/flow/Jump.java

@ -60,20 +60,6 @@ public class Jump {
this.destination = dest;
}
/**
* Returns true if this jump has jsr or monitorexit attachments.
*/
boolean hasAttachments() {
return false;
}
/**
* Returns a string describing the jsr or monitorexit attachments.
*/
String describeAttachments() {
return "";
}
/**
* Print the source code for this structured block. This handles
* everything that is unique for all structured blocks and calls
@ -87,7 +73,6 @@ public class Jump {
writer.println("gen : "+ gen.toString());
writer.println("kill: "+ kill.toString());
}
writer.println("Attachments: "+describeAttachments());
if (destination == null)
writer.println ("GOTO null-ptr!!!!!");
else

Loading…
Cancel
Save