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 a0ea7d9d5b711d1da1d1855ad97e5dba87e0ea9d Author: Gary Gregory <[email protected]> AuthorDate: Sat Jun 1 10:16:19 2024 -0400 Remove redundant keyword --- .../commons/jexl3/internal/introspection/AbstractExecutor.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/org/apache/commons/jexl3/internal/introspection/AbstractExecutor.java b/src/main/java/org/apache/commons/jexl3/internal/introspection/AbstractExecutor.java index 1e274bee..eb503460 100644 --- a/src/main/java/org/apache/commons/jexl3/internal/introspection/AbstractExecutor.java +++ b/src/main/java/org/apache/commons/jexl3/internal/introspection/AbstractExecutor.java @@ -165,14 +165,14 @@ abstract class AbstractExecutor { if (!this.getClass().equals(arg.getClass())) { return false; } - if (!this.getMethod().equals(arg.getMethod())) { + if (!getMethod().equals(arg.getMethod())) { return false; } - if (!this.getTargetClass().equals(arg.getTargetClass())) { + if (!getTargetClass().equals(arg.getTargetClass())) { return false; } // specific equality check - final Object lhsp = this.getTargetProperty(); + final Object lhsp = getTargetProperty(); final Object rhsp = arg.getTargetProperty(); if (lhsp == null && rhsp == null) { return true;
