Cleanup (typos)

GitOrigin-RevId: d41a3bcfad8ae688695ad8b8ab8fb453a52771c9
This commit is contained in:
Roman Shevchenko
2019-10-09 18:34:31 +00:00
committed by intellij-monorepo-bot
parent ad8272c32a
commit 400018c548
2 changed files with 3 additions and 3 deletions
@@ -71,7 +71,7 @@ public class CreateDesktopEntryAction extends DumbAwareAction {
String message = ApplicationBundle.message("desktop.entry.success", ApplicationNamesInfo.getInstance().getProductName());
Notifications.Bus.notify(
new Notification(Notifications.SYSTEM_MESSAGES_GROUP_ID, "Desktop Entry Created", message, NotificationType.INFORMATION),
new Notification(Notifications.SYSTEM_MESSAGES_GROUP_ID, "Desktop entry created", message, NotificationType.INFORMATION),
getProject());
}
catch (Exception e) {
@@ -101,7 +101,7 @@ public class CreateDesktopEntryAction extends DumbAwareAction {
LOG.warn(e);
final String message = ExceptionUtil.getNonEmptyMessage(e, "Internal error");
Notifications.Bus.notify(
new Notification(Notifications.SYSTEM_MESSAGES_GROUP_ID, "Desktop Entry Creation Failed", message, NotificationType.ERROR),
new Notification(Notifications.SYSTEM_MESSAGES_GROUP_ID, "Desktop entry creation failed", message, NotificationType.ERROR),
project);
}
@@ -156,7 +156,7 @@ public class CreateLauncherScriptAction extends DumbAwareAction {
LOG.warn(e);
String message = ExceptionUtil.getNonEmptyMessage(e, "Internal error");
Notifications.Bus.notify(
new Notification(Notifications.SYSTEM_MESSAGES_GROUP_ID, "Launcher Script Creation Failed", message, NotificationType.ERROR),
new Notification(Notifications.SYSTEM_MESSAGES_GROUP_ID, "Launcher script creation failed", message, NotificationType.ERROR),
project);
}