mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
This checkin does two things:
1. Refines the semantics of ghost creation, so that they only appear when warranted. 2. Implements a mechanism for filtering out files which should not appear in comparison results or be pushed along by updates. git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@4525 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -471,7 +471,8 @@ public class AVMInterpreter
|
||||
List<AVMDifference> diffs = fSyncService.compare(Integer.parseInt(command[2]),
|
||||
command[1],
|
||||
Integer.parseInt(command[4]),
|
||||
command[3]);
|
||||
command[3],
|
||||
null);
|
||||
for (AVMDifference diff : diffs)
|
||||
{
|
||||
out.println(diff);
|
||||
@@ -487,7 +488,7 @@ public class AVMInterpreter
|
||||
-1, command[3], AVMDifference.NEWER);
|
||||
List<AVMDifference> diffs = new ArrayList<AVMDifference>();
|
||||
diffs.add(diff);
|
||||
fSyncService.update(diffs, false, false, false, false, null, null);
|
||||
fSyncService.update(diffs, null, false, false, false, false, null, null);
|
||||
}
|
||||
else if (command[0].equals("resetLayer"))
|
||||
{
|
||||
|
Reference in New Issue
Block a user