You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@groovy.apache.org by su...@apache.org on 2021/03/25 00:14:42 UTC

[groovy] branch master updated: Tweak the ignored package list for reflection

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 414b5bf  Tweak the ignored package list for reflection
414b5bf is described below

commit 414b5bffd73113ebbea1b06841effc271f8b31b7
Author: Daniel Sun <su...@apache.org>
AuthorDate: Thu Mar 25 08:14:14 2021 +0800

    Tweak the ignored package list for reflection
---
 src/main/java/org/codehaus/groovy/reflection/ReflectionUtils.java | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/main/java/org/codehaus/groovy/reflection/ReflectionUtils.java b/src/main/java/org/codehaus/groovy/reflection/ReflectionUtils.java
index 411b79d..e83b3d9 100644
--- a/src/main/java/org/codehaus/groovy/reflection/ReflectionUtils.java
+++ b/src/main/java/org/codehaus/groovy/reflection/ReflectionUtils.java
@@ -65,6 +65,7 @@ public class ReflectionUtils {
         set.add("org.codehaus.groovy.vmplugin.v7");
         set.add("org.codehaus.groovy.vmplugin.v8");
         set.add("org.codehaus.groovy.vmplugin.v9");
+        set.add("org.codehaus.groovy.vmplugin.v10");
 
         IGNORED_PACKAGES = Collections.unmodifiableSet(set);
     }