parentNode = parent.getNode(path.substring(0, idx));
path = path.substring(idx + 1);
}
// only update binary if import mode is not MERGE
if (wspFilter.getImportMode(parentNode.getPath()) != ImportMode.MERGE) {
Value value = factory.createValue(binary.getInputStream());
if (!parentNode.hasProperty(path)
|| !value.equals(parentNode.getProperty(path).getValue())) {
parent.setProperty(path, value);
if (info == null) {
info = new ImportInfoImpl();