Skip to content

Commit

Permalink
Fix 1246
Browse files Browse the repository at this point in the history
  • Loading branch information
yesamer committed May 22, 2024
1 parent 457de46 commit 562df3c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -973,7 +973,7 @@ private DMNExpressionEvaluator compileConditional(DMNCompilerContext ctx, DMNMod
private DMNExpressionEvaluator compileIterator(DMNCompilerContext ctx, DMNModelImpl model, DMNBaseNode node, String exprName, Iterator expression) {
if (expression.getIteratorVariable() == null || expression.getIteratorVariable().isEmpty()) {
MsgUtil.reportMessage(logger, DMNMessage.Severity.ERROR, node.getSource(), model, null, null, Msg.MISSING_EXPRESSION_FOR_ITERATOR,
expression.getTypeRef().toString().toLowerCase(), node.getIdentifierString());
"iteratorVariable", node.getIdentifierString());
return null;
}

Expand Down

0 comments on commit 562df3c

Please sign in to comment.