Skip to content

Commit

Permalink
Fix message preparation
Browse files Browse the repository at this point in the history
Signed-off-by: Piotrek Zygielo <piotr@zygielo.pl>
  • Loading branch information
pzygielo committed Sep 2, 2020
1 parent 6f5aa86 commit 7cce803
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public static boolean evalImmediate(ELProcessor getELProcessor, String expressio

static String buildNonBooleanOutcomeMessage(Object outcome, String expression) {
return "Expression " + expression + " should evaluate to boolean but evaluated to " +
outcome == null? " null" : (outcome.getClass() + " " + outcome);
(outcome == null? " null" : (outcome.getClass() + " " + outcome));
}

public static int evalImmediate(String expression, int defaultValue) {
Expand Down

0 comments on commit 7cce803

Please sign in to comment.