Repository: groovy Updated Branches: refs/heads/GROOVY_2_6_X 76588d8df -> 4089e8bb9
Minor refactoring (cherry picked from commit 0123a52) Project: http://git-wip-us.apache.org/repos/asf/groovy/repo Commit: http://git-wip-us.apache.org/repos/asf/groovy/commit/4089e8bb Tree: http://git-wip-us.apache.org/repos/asf/groovy/tree/4089e8bb Diff: http://git-wip-us.apache.org/repos/asf/groovy/diff/4089e8bb Branch: refs/heads/GROOVY_2_6_X Commit: 4089e8bb921cdde5e87eb7b9591341eb1088ae3d Parents: 76588d8 Author: sunlan <[email protected]> Authored: Sat Aug 26 15:28:02 2017 +0800 Committer: sunlan <[email protected]> Committed: Sat Aug 26 15:29:06 2017 +0800 ---------------------------------------------------------------------- src/main/org/codehaus/groovy/control/CompilerConfiguration.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/groovy/blob/4089e8bb/src/main/org/codehaus/groovy/control/CompilerConfiguration.java ---------------------------------------------------------------------- diff --git a/src/main/org/codehaus/groovy/control/CompilerConfiguration.java b/src/main/org/codehaus/groovy/control/CompilerConfiguration.java index de12206..7a871f5 100644 --- a/src/main/org/codehaus/groovy/control/CompilerConfiguration.java +++ b/src/main/org/codehaus/groovy/control/CompilerConfiguration.java @@ -83,7 +83,7 @@ public class CompilerConfiguration { public static final String[] ALLOWED_JDKS = JDK_TO_BYTECODE_VERSION_MAP.keySet().toArray(new String[0]); // Just call getVMVersion() once. - public static final String currentJVMVersion = getVMVersion(); + public static final String CURRENT_JVM_VERSION = getVMVersion(); // Static initializers are executed in text order, // therefore we must do this one last!
