diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/module-context.xml b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/module-context.xml index 84b6bb8ba6..47f8482705 100644 --- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/module-context.xml +++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/module-context.xml @@ -248,9 +248,8 @@ - + - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/util/ContentBinDuplicationUtility.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/util/ContentBinDuplicationUtility.java index c1d7e879f0..42fc419881 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/util/ContentBinDuplicationUtility.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/util/ContentBinDuplicationUtility.java @@ -29,7 +29,6 @@ package org.alfresco.module.org_alfresco_module_rm.util; import org.alfresco.model.ContentModel; import org.alfresco.repo.policy.BehaviourFilter; import org.alfresco.service.cmr.repository.ContentReader; -import org.alfresco.service.cmr.repository.ContentService; import org.alfresco.service.cmr.repository.ContentWriter; import org.alfresco.service.cmr.repository.NodeRef; @@ -38,7 +37,7 @@ import org.alfresco.service.cmr.repository.NodeRef; * @author Ross Gale * @since 2.7.2 */ -public class ContentBinDuplicationUtility +public class ContentBinDuplicationUtility extends ServiceBaseImpl { /** @@ -46,11 +45,6 @@ public class ContentBinDuplicationUtility */ private BehaviourFilter behaviourFilter; - /** - * Provides methods for accessing and transforming content. - */ - private ContentService contentService; - /** * Setter for behaviour filter * @param behaviourFilter BehaviourFilter @@ -60,15 +54,6 @@ public class ContentBinDuplicationUtility this.behaviourFilter = behaviourFilter; } - /** - * Setter for content service - * @param contentService ContentService - */ - public void setContentService(ContentService contentService) - { - this.contentService = contentService; - } - /** * Duplicate the content of a node without triggering the audit or versioning behaviours *