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

henrib pushed a commit to branch JEXL-440
in repository https://gitbox.apache.org/repos/asf/commons-jexl.git


The following commit(s) were added to refs/heads/JEXL-440 by this push:
     new 2b79edbc JEXL-440 : pesty spotbugs deserialization check;
2b79edbc is described below

commit 2b79edbc471085c3a737384f48f85426f5c03ad6
Author: Henrib <hbies...@gmail.com>
AuthorDate: Sun Jun 8 13:12:33 2025 +0200

    JEXL-440 : pesty spotbugs deserialization check;
---
 src/main/java/org/apache/commons/jexl3/parser/ASTCaseStatement.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/src/main/java/org/apache/commons/jexl3/parser/ASTCaseStatement.java 
b/src/main/java/org/apache/commons/jexl3/parser/ASTCaseStatement.java
index bb864fde..ed4347b4 100644
--- a/src/main/java/org/apache/commons/jexl3/parser/ASTCaseStatement.java
+++ b/src/main/java/org/apache/commons/jexl3/parser/ASTCaseStatement.java
@@ -26,7 +26,7 @@ public class ASTCaseStatement extends JexlNode {
   private static final long serialVersionUID = 1L;
 
   /** The values of the case statement. */
-  private transient List<Object> values = Collections.emptyList();
+  protected transient List<Object> values = Collections.emptyList();
 
   public ASTCaseStatement(int id) {
     super(id);

Reply via email to