This is an automated email from the ASF dual-hosted git repository.
henrib 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 829a6d4 JEXL-279: fix reset
829a6d4 is described below
commit 829a6d48d90b8f4e3d340f8a69f42180e002e7e3
Author: henrib <[email protected]>
AuthorDate: Thu Dec 27 11:42:13 2018 +0100
JEXL-279: fix reset
---
src/main/java/org/apache/commons/jexl3/internal/Debugger.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/main/java/org/apache/commons/jexl3/internal/Debugger.java
b/src/main/java/org/apache/commons/jexl3/internal/Debugger.java
index 59a9743..1b5e16e 100644
--- a/src/main/java/org/apache/commons/jexl3/internal/Debugger.java
+++ b/src/main/java/org/apache/commons/jexl3/internal/Debugger.java
@@ -142,7 +142,7 @@ public class Debugger extends ParserVisitor implements
JexlInfo.Detail {
end = 0;
indentLevel = 0;
indent = 2;
- depth = 0;
+ depth = Integer.MAX_VALUE;
}
/**