oldKeywords = props.getPropertyValue(SVNProperty.KEYWORDS);
oldEolStyle = props.getPropertyValue(SVNProperty.EOL_STYLE);
props.setPropertyValue(SVNProperty.EOL_STYLE, (String) modifiedProps.get(SVNProperty.EOL_STYLE));
props.setPropertyValue(SVNProperty.KEYWORDS, (String) modifiedProps.get(SVNProperty.KEYWORDS));
}
textStatus = adminArea.mergeText(name, adminArea.getFile(basePath), adminArea.getFile(tmpPath), "", "", "", myIsLeaveConflicts, true);
} finally {
if (magicPropsChanged &&
(modifiedProps.containsKey(SVNProperty.EOL_STYLE) || modifiedProps.containsKey(SVNProperty.KEYWORDS))) {
// restore original values.
props.setPropertyValue(SVNProperty.EOL_STYLE, oldEolStyle);