From 63191fce463b3988a13fdcb33a9c6560a2b5131a Mon Sep 17 00:00:00 2001 From: jochen Date: Wed, 28 Oct 1998 12:52:11 +0000 Subject: [PATCH] bug fix git-svn-id: https://svn.code.sf.net/p/jode/code/trunk@84 379699f6-c40d-0410-875b-85095c16579e --- jode/jode/flow/TransformExceptionHandlers.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/jode/jode/flow/TransformExceptionHandlers.java b/jode/jode/flow/TransformExceptionHandlers.java index 467c3fa..edfadb1 100644 --- a/jode/jode/flow/TransformExceptionHandlers.java +++ b/jode/jode/flow/TransformExceptionHandlers.java @@ -675,8 +675,7 @@ public class TransformExceptionHandlers { /* remove the pop now */ firstInstr.removeBlock(); - tryFlow.length += catchFlow.length; - updateInOutCatch(tryFlow, succ); + tryFlow.length += catchFlow.length; if (succ != null) { Jump jumps = (Jump) tryFlow.successors.remove(succ);