This is an automated email from the ASF dual-hosted git repository. sebb pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-jexl.git
The following commit(s) were added to refs/heads/master by this push: new 272ea6c9 Be consistent using 'this' 272ea6c9 is described below commit 272ea6c996126b7ded79c5cac787cde8f032dd97 Author: Sebb <s...@apache.org> AuthorDate: Thu Oct 19 22:37:31 2023 +0100 Be consistent using 'this' --- src/main/java/org/apache/commons/jexl3/JexlFeatures.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/apache/commons/jexl3/JexlFeatures.java b/src/main/java/org/apache/commons/jexl3/JexlFeatures.java index 56939d30..7f46e9de 100644 --- a/src/main/java/org/apache/commons/jexl3/JexlFeatures.java +++ b/src/main/java/org/apache/commons/jexl3/JexlFeatures.java @@ -230,7 +230,7 @@ public final class JexlFeatures { this.flags = f; this.reservedNames = r == null? Collections.emptySet() : r; this.nameSpaces = n == null? TEST_STR_FALSE : n; - setFeature(RESERVED, !reservedNames.isEmpty()); + setFeature(RESERVED, !this.reservedNames.isEmpty()); } @Override