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 c30744cf1439f0af12ec79a3765fbb026274969e Author: Gary D. Gregory <garydgreg...@gmail.com> AuthorDate: Fri Apr 11 18:30:20 2025 -0400 Use final --- .../org/apache/commons/jexl3/internal/introspection/Uberspect.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/apache/commons/jexl3/internal/introspection/Uberspect.java b/src/main/java/org/apache/commons/jexl3/internal/introspection/Uberspect.java index f800abdb..8874f81e 100644 --- a/src/main/java/org/apache/commons/jexl3/internal/introspection/Uberspect.java +++ b/src/main/java/org/apache/commons/jexl3/internal/introspection/Uberspect.java @@ -162,13 +162,13 @@ public class Uberspect implements JexlUberspect { @Override public JexlArithmetic.Uberspect getArithmetic(final JexlArithmetic arithmetic) { - Set<JexlOperator> operators = arithmetic == null ? Collections.emptySet() : getOverloads(arithmetic); + final Set<JexlOperator> operators = arithmetic == null ? Collections.emptySet() : getOverloads(arithmetic); return operators.isEmpty()? null : new Operator(this, arithmetic, operators); } @Override public Operator getOperator(final JexlArithmetic arithmetic) { - Set<JexlOperator> operators = arithmetic == null ? Collections.emptySet() : getOverloads(arithmetic); + final Set<JexlOperator> operators = arithmetic == null ? Collections.emptySet() : getOverloads(arithmetic); return new Operator(this, arithmetic, operators); }