Skip to content

Commit

Permalink
Fixed RegEx parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
szumielxd committed Jan 22, 2022
1 parent dc6e106 commit 4420fd7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

public class ExprEvaluateFunction extends SimpleExpression<Object>{
static {
Registry.newSimple(ExprEvaluateFunction.class, "result of function %string% [with <.+?>]", "result of function %string\\(<.+?>\\)");
Registry.newSimple(ExprEvaluateFunction.class, "result of function %string% [with <.+?>]", "result of function %string%\\(<.+?>\\)");
}

private Expression<String> func;
Expand Down

0 comments on commit 4420fd7

Please sign in to comment.