This is an automated email from the ASF dual-hosted git repository. sebb pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-jexl.git
The following commit(s) were added to refs/heads/master by this push: new 10b9b1ef Oops, needs to call super 10b9b1ef is described below commit 10b9b1efe48194999a2f5ee736a2ef97267d0643 Author: Sebb <sebb...@users.noreply.github.com> AuthorDate: Sun Feb 9 10:14:44 2025 +0000 Oops, needs to call super --- src/main/java/org/apache/commons/jexl3/JexlArithmetic.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main/java/org/apache/commons/jexl3/JexlArithmetic.java b/src/main/java/org/apache/commons/jexl3/JexlArithmetic.java index a1460e6f..5240c669 100644 --- a/src/main/java/org/apache/commons/jexl3/JexlArithmetic.java +++ b/src/main/java/org/apache/commons/jexl3/JexlArithmetic.java @@ -128,7 +128,9 @@ public class JexlArithmetic { private static final long serialVersionUID = 4720876194840764770L; /** Default constructor */ - public NullOperand() {} ; // satisfy Javadoc + public NullOperand() { + super(); + } ; // satisfy Javadoc } /**