if (scanMode != null) {
graph.scanMode = scanMode;
configuration.setScanMode(scanMode);
if (history.getStatus().mergeInfoUnavailable
&& !configuration.isMergeInfoUnavailableWarningSuppressed()) {
Notifications.Bus.notify(new Notification("SvnRevisionGraph",
"Merge information is not available",
"Repository uses SVN version 1.4 or earlier. Displayed graph may contain less information.",
NotificationType.WARNING), project);
configuration.suppressMergeInfoUnavailableWarning();
}
if (history.getStatus().retrievedWithErrors) {
Notifications.Bus.notify(new Notification("SvnRevisionGraph",
"Error collecting revision information",
"Displayed graph may be incorrect or incomplete. More details are in IDEA's log.",
NotificationType.ERROR), project);
}
}