ALF-3179: Correction to handling of peer associations for which the transferred node is the target.

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@20574 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Brian Remmington
2010-06-09 17:49:59 +00:00
parent 890d3795ce
commit 3a444f3419

View File

@@ -93,7 +93,7 @@ public class RepoSecondaryManifestProcessorImpl extends AbstractManifestProcesso
//Process "source" peer associations (associations *to* this node) //Process "source" peer associations (associations *to* this node)
requiredPeerAssocs = node.getSourceAssocs(); requiredPeerAssocs = node.getSourceAssocs();
currentPeerAssocs = nodeService.getSourceAssocs(correspondingNodeRef, RegexQNamePattern.MATCH_ALL); currentPeerAssocs = nodeService.getSourceAssocs(correspondingNodeRef, RegexQNamePattern.MATCH_ALL);
processPeerAssociations(requiredPeerAssocs, currentPeerAssocs, correspondingNodeRef, true); processPeerAssociations(requiredPeerAssocs, currentPeerAssocs, correspondingNodeRef, false);
} }