mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
Build fix. RuleServiceImpl was using big NodeService instead of runtimeNodeService to check types
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@2394 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -382,7 +382,7 @@ public class RuleServiceImpl implements RuleService, RuntimeRuleService
|
||||
{
|
||||
boolean result = true;
|
||||
|
||||
QName nodeType = this.nodeService.getType(nodeRef);
|
||||
QName nodeType = this.runtimeNodeService.getType(nodeRef);
|
||||
if (this.dictionaryService.isSubClass(nodeType, ContentModel.TYPE_SYSTEM_FOLDER) == true ||
|
||||
this.dictionaryService.isSubClass(nodeType, ActionModel.TYPE_ACTION) == true ||
|
||||
this.dictionaryService.isSubClass(nodeType, ActionModel.TYPE_ACTION_CONDITION) == true ||
|
||||
|
Reference in New Issue
Block a user