From 854a466d67ee9590bdd8e4ea3a1c5cacbd4f009a Mon Sep 17 00:00:00 2001 From: hoenicke Date: Thu, 7 Dec 2000 17:01:04 +0000 Subject: [PATCH] Copy options from childBP, when replacing childBP with this break point. Didn't I fixed this before??? git-svn-id: https://svn.code.sf.net/p/jode/code/trunk@1279 379699f6-c40d-0410-875b-85095c16579e --- jode/jode/decompiler/TabbedPrintWriter.java | 1 + 1 file changed, 1 insertion(+) diff --git a/jode/jode/decompiler/TabbedPrintWriter.java b/jode/jode/decompiler/TabbedPrintWriter.java index 81457e6..ea9da72 100644 --- a/jode/jode/decompiler/TabbedPrintWriter.java +++ b/jode/jode/decompiler/TabbedPrintWriter.java @@ -133,6 +133,7 @@ public class TabbedPrintWriter { */ BreakPoint child = (BreakPoint) childBPs.elementAt(0); startPos = child.startPos; + options = child.options; endPos = child.endPos; breakPenalty = child.breakPenalty; childBPs = child.childBPs;