Skip to content

Commit

Permalink
[ignore] Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
adamretter committed Oct 9, 2024
1 parent edc62fb commit 439307e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions exist-core/src/main/java/org/exist/xquery/OpNumeric.java
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,12 @@ public class OpNumeric extends BinaryOp {
protected NodeSet temp = null;
protected DBBroker broker;

public OpNumeric(XQueryContext context, ArithmeticOperator operator) {
public OpNumeric(final XQueryContext context, final ArithmeticOperator operator) {
super(context);
this.operator = operator;
}

public OpNumeric(XQueryContext context, Expression left, Expression right, ArithmeticOperator operator) {
public OpNumeric(final XQueryContext context, Expression left, Expression right, final ArithmeticOperator operator) {
super(context);
this.operator = operator;
int ltype = left.returnsType();
Expand Down

0 comments on commit 439307e

Please sign in to comment.