From 86e5b42bdf1295f39cc5d3766e47db6edf12a1ae Mon Sep 17 00:00:00 2001 From: Ralph Soika Date: Thu, 26 Sep 2024 08:41:32 +0200 Subject: [PATCH] typo --- .../src/main/java/org/imixs/workflow/ModelManager.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imixs-workflow-core/src/main/java/org/imixs/workflow/ModelManager.java b/imixs-workflow-core/src/main/java/org/imixs/workflow/ModelManager.java index d6cfc8ef2..6a6b0ded1 100644 --- a/imixs-workflow-core/src/main/java/org/imixs/workflow/ModelManager.java +++ b/imixs-workflow-core/src/main/java/org/imixs/workflow/ModelManager.java @@ -242,7 +242,7 @@ public ItemCollection loadEvent(ItemCollection workitem) throws ModelException { // If we still did not find the event we throw a ModelException.... if (event == null) { throw new ModelException(ModelException.UNDEFINED_MODEL_ENTRY, "Event " + workitem.getTaskID() + "." - + workitem.getEventID() + " is not a callable in model '" + workitem.getModelVersion() + "'"); + + workitem.getEventID() + " is not callable in model '" + workitem.getModelVersion() + "'"); } return event; }