Skip to content

Commit

Permalink
Oops, needs to call super
Browse files Browse the repository at this point in the history
  • Loading branch information
sebbASF authored Feb 9, 2025
1 parent 4e63614 commit 10b9b1e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/main/java/org/apache/commons/jexl3/JexlArithmetic.java
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,9 @@ public static class NullOperand extends ArithmeticException {
private static final long serialVersionUID = 4720876194840764770L;

/** Default constructor */
public NullOperand() {} ; // satisfy Javadoc
public NullOperand() {
super();
} ; // satisfy Javadoc
}

/**
Expand Down

0 comments on commit 10b9b1e

Please sign in to comment.