From e598216b9714a641659216e07661c976083ee668 Mon Sep 17 00:00:00 2001 From: jochen Date: Tue, 20 Jul 1999 16:26:53 +0000 Subject: [PATCH] removed debugging output git-svn-id: https://svn.code.sf.net/p/jode/code/trunk@1106 379699f6-c40d-0410-875b-85095c16579e --- jode/jode/flow/TransformExceptionHandlers.java.in | 9 --------- 1 file changed, 9 deletions(-) diff --git a/jode/jode/flow/TransformExceptionHandlers.java.in b/jode/jode/flow/TransformExceptionHandlers.java.in index 858d6dd..2abe7b0 100644 --- a/jode/jode/flow/TransformExceptionHandlers.java.in +++ b/jode/jode/flow/TransformExceptionHandlers.java.in @@ -306,28 +306,19 @@ public class TransformExceptionHandlers { * directly to a correct jsr instruction, which * lies outside the try/catch block. */ - System.err.println("tick0" - +exitBlock - +" ["+startOutExit+","+endOutExit - +"]->"+subRoutine.getAddr() - +" dest "+jumps.destination - +" dest preds "+jumps.destination.predecessors); if (exitBlock == null && jumps.destination.predecessors.size() == 1 && jumps.destination.getAddr() >= startOutExit && jumps.destination.getNextAddr() <= endOutExit) { - System.err.println("tick1"); jumps.destination.analyze(startOutExit, endOutExit); StructuredBlock sb = jumps.destination.block; if (sb instanceof SequentialBlock) sb = sb.getSubBlocks()[0]; - System.err.println("tick2"); if (sb instanceof JsrBlock && sb.getSubBlocks()[0] instanceof EmptyBlock && (sb.getSubBlocks()[0].jump.destination == subRoutine)) { - System.err.println("tick3"); StructuredBlock jsrInner = sb.getSubBlocks()[0]; exitBlock = jumps.destination; jumps.destination.removeSuccessor(jsrInner.jump);