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
The following commit(s) were added to refs/heads/master by this push:
new e4f5a33b Format tweak
new 9115bdea Merge branch 'master' of
https://gitbox.apache.org/repos/asf/commons-jexl.git
e4f5a33b is described below
commit e4f5a33b4f9c82b48cb154ff7cc3508e6cd76be0
Author: Gary Gregory <[email protected]>
AuthorDate: Sat Jul 8 08:11:25 2023 -0400
Format tweak
---
src/main/java/org/apache/commons/jexl3/internal/Scope.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/main/java/org/apache/commons/jexl3/internal/Scope.java
b/src/main/java/org/apache/commons/jexl3/internal/Scope.java
index 34928110..b49d0f37 100644
--- a/src/main/java/org/apache/commons/jexl3/internal/Scope.java
+++ b/src/main/java/org/apache/commons/jexl3/internal/Scope.java
@@ -262,7 +262,7 @@ public final class Scope {
*/
public int getCaptureDeclaration(final int symbol) {
Integer declared = capturedVariables != null?
capturedVariables.get(symbol) : null;
- return declared != null? declared.intValue() : -1;
+ return declared != null ? declared.intValue() : -1;
}
/**