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 02fc2bb0269e0ba646a6111b77c4451aeb9b8e82 Author: Gary Gregory <[email protected]> AuthorDate: Sat Jun 1 10:17:31 2024 -0400 Remove redundant keyword --- src/main/java/org/apache/commons/jexl3/parser/ASTJexlScript.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/apache/commons/jexl3/parser/ASTJexlScript.java b/src/main/java/org/apache/commons/jexl3/parser/ASTJexlScript.java index 0b2ed3f8..651ec23b 100644 --- a/src/main/java/org/apache/commons/jexl3/parser/ASTJexlScript.java +++ b/src/main/java/org/apache/commons/jexl3/parser/ASTJexlScript.java @@ -174,7 +174,7 @@ public class ASTJexlScript extends JexlLexicalNode { this.scope = theScope; if (theScope != null) { for(int a = 0; a < theScope.getArgCount(); ++a) { - this.declareSymbol(a); + declareSymbol(a); } } }
