mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-31 17:39:05 +00:00
Community contribution - fixed code typo which cased a ClassCastException with multiple pooled actors.
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@14260 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -2204,7 +2204,7 @@ public class JBPMEngine extends BPMEngine
|
||||
if (key.equals(WorkflowModel.ASSOC_POOLED_ACTORS))
|
||||
{
|
||||
String[] pooledActors = null;
|
||||
if (value instanceof JBPMNodeList[])
|
||||
if (value instanceof JBPMNodeList)
|
||||
{
|
||||
JBPMNodeList actors = (JBPMNodeList)value;
|
||||
pooledActors = new String[actors.size()];
|
||||
|
Reference in New Issue
Block a user