We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 31d79ad commit 0bfe9d5Copy full SHA for 0bfe9d5
1 file changed
src/main/java/com/github/sidhant92/boolparser/parser/antlr/CachedBoolParser.java
@@ -27,6 +27,6 @@ public Try<Node> parseExpression(final String expression) {
27
28
private Node getNode(final String expression, final String defaultField) {
29
final String cacheKey = expression + "_" + Optional.ofNullable(defaultField).orElse("");
30
- return cache.get(cacheKey, ex -> super.parse(ex, defaultField));
+ return cache.get(cacheKey, ex -> super.parse(expression, defaultField));
31
}
32
0 commit comments