From a75ab0fb9f417896de62516192ef4547b68140ea Mon Sep 17 00:00:00 2001 From: jochen Date: Fri, 23 Oct 1998 20:36:40 +0000 Subject: [PATCH] removed the attachment crap git-svn-id: https://svn.code.sf.net/p/jode/code/trunk@61 379699f6-c40d-0410-875b-85095c16579e --- jode/jode/flow/Jump.java | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/jode/jode/flow/Jump.java b/jode/jode/flow/Jump.java index 112e848..66c61e2 100644 --- a/jode/jode/flow/Jump.java +++ b/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