if (modified == false && root != deploymentContext.getRoot())
{
// check for update or delete
UpdateDeleteVisitor udVisitor = new UpdateDeleteVisitor(tempAttributes, getCache(), synchAdapter, root);
VirtualFile tempRoot = deploymentContext.getRoot();
tempRoot.visit(udVisitor);
// check for addition
AddVisitor addVisitor = new AddVisitor(originalAttributes, getCache(), synchAdapter, tempRoot, root.getPathName().length());
root.visit(addVisitor);
}
return modified;