sourceProps = new SVNProperties();
}
SVNProperties targetProps = targetNode.getProperties(fsfs);
SVNProperties propsDiffs = FSRepositoryUtil.getPropsDiffs(sourceProps, targetProps);
Object[] names = propsDiffs.nameSet().toArray();
for (int i = 0; i < names.length; i++) {
String propName = (String) names[i];
SVNPropertyValue propValue = propsDiffs.getSVNPropertyValue(propName);
if (isDir) {
editor.changeDirProperty(propName, propValue);