summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Branson <andrew.branson@cern.ch>2015-04-27 14:43:28 +0200
committerAndrew Branson <andrew.branson@cern.ch>2015-04-27 14:43:28 +0200
commitddcb4b12eca78120b2e6d9c3d4ec419c7c24199b (patch)
treece5cf64ef9d2d8ed23a7f7dad5e94444d3efcf23
parent64b6255c49ba485525a19ed96166fd2be2634a21 (diff)
Typo in error
-rw-r--r--src/main/java/com/c2kernel/lifecycle/ActivitySlotDef.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/com/c2kernel/lifecycle/ActivitySlotDef.java b/src/main/java/com/c2kernel/lifecycle/ActivitySlotDef.java
index 885f613..5398b38 100644
--- a/src/main/java/com/c2kernel/lifecycle/ActivitySlotDef.java
+++ b/src/main/java/com/c2kernel/lifecycle/ActivitySlotDef.java
@@ -48,7 +48,7 @@ public class ActivitySlotDef extends WfVertexDef
try {
actVersion = Integer.parseInt(getActVersion());
} catch (NumberFormatException ex) {
- throw new InvalidDataException("Non-integer activitiy version set for slot "+getActName(), "");
+ throw new InvalidDataException("Non-integer activity version set for slot "+getActName(), "");
}
ActivityDef actDef = LocalObjectLoader.getActDef(getActivityDef(), actVersion);
if (actDef instanceof CompositeActivityDef)