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 4ef6b927a2c4365e442ba7acd2fb99dcf6374a90
Author: Gary Gregory <[email protected]>
AuthorDate: Sat Jun 1 10:16:52 2024 -0400

    Remove redundant keyword
---
 src/test/java/org/apache/commons/jexl3/AnnotationTest.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/test/java/org/apache/commons/jexl3/AnnotationTest.java 
b/src/test/java/org/apache/commons/jexl3/AnnotationTest.java
index e4bd5628..02440d6b 100644
--- a/src/test/java/org/apache/commons/jexl3/AnnotationTest.java
+++ b/src/test/java/org/apache/commons/jexl3/AnnotationTest.java
@@ -107,7 +107,7 @@ public class AnnotationTest extends JexlTestCase {
     public static class OptAnnotationContext extends JexlEvalContext 
implements JexlContext.AnnotationProcessor {
         @Override
         public Object processAnnotation(final String name, final Object[] 
args, final Callable<Object> statement) throws Exception {
-            final JexlOptions options = this.getEngineOptions();
+            final JexlOptions options = getEngineOptions();
             // transient side effect for strict
             if ("strict".equals(name)) {
                 final boolean s = (Boolean) args[0];

Reply via email to