This is an automated email from the ASF dual-hosted git repository. henrib pushed a commit to branch release in repository https://gitbox.apache.org/repos/asf/commons-jexl.git
The following commit(s) were added to refs/heads/release by this push: new 29a15cbc JEXL: getting ready for RC2 ; 29a15cbc is described below commit 29a15cbc757037b7c9c6075eac1885030cabb841 Author: henrib <hen...@apache.org> AuthorDate: Fri Mar 17 18:23:14 2023 +0100 JEXL: getting ready for RC2 ; --- .../java/org/apache/commons/jexl3/internal/introspection/ClassMap.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/apache/commons/jexl3/internal/introspection/ClassMap.java b/src/main/java/org/apache/commons/jexl3/internal/introspection/ClassMap.java index ca8bee6f..3d91bc3f 100644 --- a/src/main/java/org/apache/commons/jexl3/internal/introspection/ClassMap.java +++ b/src/main/java/org/apache/commons/jexl3/internal/introspection/ClassMap.java @@ -321,7 +321,7 @@ final class ClassMap { try { final Method[] methods = clazz.getDeclaredMethods(); for (final Method mi : methods) { - // method must be public, not a bridge, not synthetic + // method must be public if (!Modifier.isPublic(mi.getModifiers())) { continue; }