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

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

commit 6fa86ca8fc1751f1fe05f12422d7b61bee81002d
Author: Gary D. Gregory <garydgreg...@gmail.com>
AuthorDate: Fri Apr 11 18:25:18 2025 -0400

    Remove redundant semi-colon
---
 src/main/java/org/apache/commons/jexl3/JexlArithmetic.java | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/src/main/java/org/apache/commons/jexl3/JexlArithmetic.java 
b/src/main/java/org/apache/commons/jexl3/JexlArithmetic.java
index ea438592..1d30853d 100644
--- a/src/main/java/org/apache/commons/jexl3/JexlArithmetic.java
+++ b/src/main/java/org/apache/commons/jexl3/JexlArithmetic.java
@@ -142,8 +142,7 @@ public class JexlArithmetic {
 
         /** Default constructor */
         public NullOperand() {
-            super();
-        } ; // satisfy Javadoc
+        } // satisfy Javadoc
     }
 
     /**
@@ -1594,7 +1593,7 @@ public class JexlArithmetic {
     @Deprecated
     public JexlArithmetic options(final JexlEngine.Options options) {
         if (options != null) {
-            boolean isstrict = Boolean.TRUE == options.isStrictArithmetic() || 
isStrict();
+            final boolean isstrict = Boolean.TRUE == 
options.isStrictArithmetic() || isStrict();
             MathContext bigdContext = options.getArithmeticMathContext();
             if (bigdContext == null) {
                 bigdContext = getMathContext();

Reply via email to