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/08/08 16:11:27 UTC

[groovy] branch master updated: Update the ignored packages in the call stack

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 4ff2f85  Update the ignored packages in the call stack
4ff2f85 is described below

commit 4ff2f859107ed083b7a60211c7357cd9fd08f143
Author: Daniel Sun <su...@apache.org>
AuthorDate: Mon Aug 9 00:10:06 2021 +0800

    Update the ignored packages in the call stack
---
 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 0057c02..e85883b 100644
--- a/src/main/java/org/codehaus/groovy/reflection/ReflectionUtils.java
+++ b/src/main/java/org/codehaus/groovy/reflection/ReflectionUtils.java
@@ -71,6 +71,7 @@ public class ReflectionUtils {
         set.add("org.codehaus.groovy.vmplugin.v8");
         set.add("org.codehaus.groovy.vmplugin.v9");
         set.add("org.codehaus.groovy.vmplugin.v10");
+        set.add("org.codehaus.groovy.vmplugin.v16");
 
         IGNORED_PACKAGES = Collections.unmodifiableSet(set);
     }