You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2022/11/28 19:17:48 UTC

[commons-jexl] 14/15: Add missing @Override

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 658a8520695fe42a87af1c52ec760a016c0bdd83
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Mon Nov 28 14:12:43 2022 -0500

    Add missing @Override
---
 src/main/java/org/apache/commons/jexl3/parser/ASTIdentifier.java | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/main/java/org/apache/commons/jexl3/parser/ASTIdentifier.java b/src/main/java/org/apache/commons/jexl3/parser/ASTIdentifier.java
index f1877646..acb46c6d 100644
--- a/src/main/java/org/apache/commons/jexl3/parser/ASTIdentifier.java
+++ b/src/main/java/org/apache/commons/jexl3/parser/ASTIdentifier.java
@@ -121,6 +121,7 @@ public class ASTIdentifier extends JexlNode {
         flags = set(LEXICAL, flags, f);
     }
 
+    @Override
     public boolean isConstant() {
         return isSet(CONST, flags);
     }