Skip to content

Commit

Permalink
fix JexlEngineUtil(Map<String, Object> functions) now adds map to the…
Browse files Browse the repository at this point in the history
… instance var

Signed-off-by: David Murch <david.murch@integration.works>
  • Loading branch information
murchd authored and davidmurch committed Aug 18, 2023
1 parent 090309b commit 074a8a1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public JexlEngineUtil() {

public JexlEngineUtil(Map<String, Object> functions) {
this();
functions.putAll(functions);
this.functions.putAll(functions);

}

Expand Down

0 comments on commit 074a8a1

Please sign in to comment.