Trivial refactoring (cherry picked from commit 45e76e7)
Project: http://git-wip-us.apache.org/repos/asf/groovy/repo Commit: http://git-wip-us.apache.org/repos/asf/groovy/commit/27908c18 Tree: http://git-wip-us.apache.org/repos/asf/groovy/tree/27908c18 Diff: http://git-wip-us.apache.org/repos/asf/groovy/diff/27908c18 Branch: refs/heads/GROOVY_2_4_X Commit: 27908c18022b05ee29a794a4a6ed6d4fe7d3a1cc Parents: 54b8ac9 Author: sunlan <[email protected]> Authored: Mon Dec 4 08:56:03 2017 +0800 Committer: sunlan <[email protected]> Committed: Mon Dec 4 11:30:24 2017 +0800 ---------------------------------------------------------------------- src/main/org/codehaus/groovy/classgen/asm/CompileStack.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/groovy/blob/27908c18/src/main/org/codehaus/groovy/classgen/asm/CompileStack.java ---------------------------------------------------------------------- diff --git a/src/main/org/codehaus/groovy/classgen/asm/CompileStack.java b/src/main/org/codehaus/groovy/classgen/asm/CompileStack.java index 627c451..248cd91 100644 --- a/src/main/org/codehaus/groovy/classgen/asm/CompileStack.java +++ b/src/main/org/codehaus/groovy/classgen/asm/CompileStack.java @@ -165,7 +165,7 @@ public class CompileStack implements Opcodes { } } - private class ExceptionTableEntry { + private static class ExceptionTableEntry { Label start,end,goal; String sig; }
