Repository: groovy Updated Branches: refs/heads/master 8cb2442aa -> 9974e2a25
GROOVY-8784: Prepare for supporting JDK 12 bytecode (typo) Project: http://git-wip-us.apache.org/repos/asf/groovy/repo Commit: http://git-wip-us.apache.org/repos/asf/groovy/commit/9974e2a2 Tree: http://git-wip-us.apache.org/repos/asf/groovy/tree/9974e2a2 Diff: http://git-wip-us.apache.org/repos/asf/groovy/diff/9974e2a2 Branch: refs/heads/master Commit: 9974e2a2540205028e85c48cca3ca38d45ce446c Parents: 8cb2442 Author: Paul King <[email protected]> Authored: Thu Sep 13 09:16:02 2018 +1000 Committer: Paul King <[email protected]> Committed: Thu Sep 13 09:16:02 2018 +1000 ---------------------------------------------------------------------- .../java/org/codehaus/groovy/control/CompilerConfiguration.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/groovy/blob/9974e2a2/src/main/java/org/codehaus/groovy/control/CompilerConfiguration.java ---------------------------------------------------------------------- diff --git a/src/main/java/org/codehaus/groovy/control/CompilerConfiguration.java b/src/main/java/org/codehaus/groovy/control/CompilerConfiguration.java index 4e36b3e..4facb6b 100644 --- a/src/main/java/org/codehaus/groovy/control/CompilerConfiguration.java +++ b/src/main/java/org/codehaus/groovy/control/CompilerConfiguration.java @@ -65,7 +65,7 @@ public class CompilerConfiguration { public static final String JDK10 = "10"; /** This (<code>"11"</code>) is the value for targetBytecode to compile for a JDK 11. **/ public static final String JDK11 = "11"; - /** This (<code>"11"</code>) is the value for targetBytecode to compile for a JDK 12. **/ + /** This (<code>"12"</code>) is the value for targetBytecode to compile for a JDK 12. **/ public static final String JDK12 = "12"; /**
