From 692f12daed4d06c7129cbb4a7fb2dc27528a8ee7 Mon Sep 17 00:00:00 2001 From: jochen Date: Tue, 27 Apr 1999 18:10:08 +0000 Subject: [PATCH] simplify() method git-svn-id: https://svn.code.sf.net/p/jode/code/trunk@634 379699f6-c40d-0410-875b-85095c16579e --- jode/jode/flow/FlowBlock.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/jode/jode/flow/FlowBlock.java b/jode/jode/flow/FlowBlock.java index ea6a1ee..03a2349 100644 --- a/jode/jode/flow/FlowBlock.java +++ b/jode/jode/flow/FlowBlock.java @@ -25,6 +25,7 @@ import jode.decompiler.TabbedPrintWriter; import jode.decompiler.CodeAnalyzer; import jode.expr.Expression; import jode.expr.CombineableOperator; +import jode.util.SimpleDictionary; /** * A flow block is the structure of which the flow graph consists. A @@ -1490,6 +1491,10 @@ public class FlowBlock { block.makeDeclaration(param); } + public void simplify() { + block.simplify(); + } + /** * Print the source code for this structured block. This handles * everything that is unique for all structured blocks and calls