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 73e91cbbf4b6cd6ecf89d82c9fc35f7041ed0997 Author: Gary Gregory <[email protected]> AuthorDate: Sat Jun 1 10:21:27 2024 -0400 Remove redundant keyword --- src/test/java/org/apache/commons/jexl3/LexicalTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/java/org/apache/commons/jexl3/LexicalTest.java b/src/test/java/org/apache/commons/jexl3/LexicalTest.java index 1fb7f01c..be7659ff 100644 --- a/src/test/java/org/apache/commons/jexl3/LexicalTest.java +++ b/src/test/java/org/apache/commons/jexl3/LexicalTest.java @@ -57,7 +57,7 @@ public class LexicalTest { public Object processAnnotation(final String name, final Object[] args, final Callable<Object> statement) throws Exception { // transient side effect for strict if ("scale".equals(name)) { - final JexlOptions options = this.getEngineOptions(); + final JexlOptions options = getEngineOptions(); final int scale = options.getMathScale(); final int newScale = (Integer) args[0]; options.setMathScale(newScale);
