Workflow: Fix issue where re-use of swimlane in a pooled task failed as the pooled task was immediately assigned an owner (the owner set previously in the swimlane).

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@6142 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
David Caruana
2007-07-03 11:45:40 +00:00
parent 62bfb6356a
commit 6f02a81027

View File

@@ -1968,7 +1968,7 @@ public class JBPMEngine extends BPMEngine
String existingActorId = instance.getActorId();
if (existingActorId == null || !existingActorId.equals(actorId))
{
instance.setActorId((String)value);
instance.setActorId((String)value, false);
}
continue;
}