From fe6201971109f686215c34512f49205fe51104bd Mon Sep 17 00:00:00 2001 From: chiba Date: Wed, 7 Dec 2011 05:32:18 +0000 Subject: [PATCH] make Block.incoming() public. git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@604 30ef5769-5b8d-40dd-aea6-55b5d6557bb3 --- src/main/javassist/bytecode/analysis/ControlFlow.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/javassist/bytecode/analysis/ControlFlow.java b/src/main/javassist/bytecode/analysis/ControlFlow.java index ca81f1dd..ae85dae6 100644 --- a/src/main/javassist/bytecode/analysis/ControlFlow.java +++ b/src/main/javassist/bytecode/analysis/ControlFlow.java @@ -236,7 +236,7 @@ public class ControlFlow { /** * Returns the number of the control paths entering this block. */ - int incomings() { return incoming; } + public int incomings() { return incoming; } /** * Returns the blocks that the control may jump into this block from. -- 2.39.5