diff options
author | chiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3> | 2011-12-07 05:32:18 +0000 |
---|---|---|
committer | chiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3> | 2011-12-07 05:32:18 +0000 |
commit | fe6201971109f686215c34512f49205fe51104bd (patch) | |
tree | 43d48933a416976aca019e5be8d70b49307417f8 /src | |
parent | 53b0445151d88092d113eb28572e88f479ba21db (diff) | |
download | javassist-fe6201971109f686215c34512f49205fe51104bd.tar.gz javassist-fe6201971109f686215c34512f49205fe51104bd.zip |
make Block.incoming() public.
git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@604 30ef5769-5b8d-40dd-aea6-55b5d6557bb3
Diffstat (limited to 'src')
-rw-r--r-- | src/main/javassist/bytecode/analysis/ControlFlow.java | 2 |
1 files changed, 1 insertions, 1 deletions
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. |