diff --git a/prism/src/parser/ast/SystemParallel.java b/prism/src/parser/ast/SystemParallel.java index 6e0dae2c..7dae8c28 100644 --- a/prism/src/parser/ast/SystemParallel.java +++ b/prism/src/parser/ast/SystemParallel.java @@ -156,11 +156,13 @@ public class SystemParallel extends SystemDefn /** * Perform a deep copy. */ + @SuppressWarnings("unchecked") public SystemDefn deepCopy() { SystemParallel ret = new SystemParallel(); ret.setOperand1(getOperand1().deepCopy()); ret.setOperand2(getOperand2().deepCopy()); + ret.actions = (actions == null) ? null : (Vector)actions.clone(); ret.setPosition(this); return ret; }