You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@groovy.apache.org by pa...@apache.org on 2020/04/15 04:13:38 UTC

[groovy] 03/03: GROOVY-9505: improve comment

This is an automated email from the ASF dual-hosted git repository.

paulk pushed a commit to branch GROOVY_3_0_X
in repository https://gitbox.apache.org/repos/asf/groovy.git

commit 87d2ca799af7a9c18974ea95f05c698601b140fa
Author: Paul King <pa...@asert.com.au>
AuthorDate: Wed Apr 15 13:26:44 2020 +1000

    GROOVY-9505: improve comment
---
 src/main/java/org/codehaus/groovy/control/CompilerConfiguration.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/java/org/codehaus/groovy/control/CompilerConfiguration.java b/src/main/java/org/codehaus/groovy/control/CompilerConfiguration.java
index 2d8bfb3..3e7e58f 100644
--- a/src/main/java/org/codehaus/groovy/control/CompilerConfiguration.java
+++ b/src/main/java/org/codehaus/groovy/control/CompilerConfiguration.java
@@ -123,7 +123,7 @@ public class CompilerConfiguration {
     public static final String[] ALLOWED_JDKS = JDK_TO_BYTECODE_VERSION_MAP.keySet().toArray(new String[JDK_TO_BYTECODE_VERSION_MAP.size()]);
 
     /**
-    * The valid instruction sets.
+    * The ASM api version to use when loading/parsing classes, and generating proxy adapter classes.
     */
     public static final int ASM_API_VERSION = Opcodes.ASM8;