command.put(SVNProperty.shortPropertyName(SVNProperty.TEXT_TIME), (String) null);
log.addCommand(SVNLog.MODIFY_ENTRY, command, false);
}
properties.setPropertyValue(propName, propValue);
dir.saveVersionedProperties(log, false);
log.save();
dir.runLogs();
final boolean modified = oldValue == null ? propValue != null : !oldValue.equals(propValue);
if (modified || action == SVNEventAction.PROPERTY_DELETE_NONEXISTENT) {
dir.getWCAccess().handleEvent(new SVNEvent(path, entry.getKind(), null, -1, null, null, null, null, action, action, null, null, null));
}