From 400018c548892d1c57c137ae17c654f3a85d397b Mon Sep 17 00:00:00 2001 From: Roman Shevchenko Date: Wed, 9 Oct 2019 20:33:26 +0200 Subject: [PATCH] Cleanup (typos) GitOrigin-RevId: d41a3bcfad8ae688695ad8b8ab8fb453a52771c9 --- .../com/intellij/ide/actions/CreateDesktopEntryAction.java | 4 ++-- .../com/intellij/ide/actions/CreateLauncherScriptAction.java | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/platform/platform-impl/src/com/intellij/ide/actions/CreateDesktopEntryAction.java b/platform/platform-impl/src/com/intellij/ide/actions/CreateDesktopEntryAction.java index 093d182d32ed..d2735d87f5e7 100644 --- a/platform/platform-impl/src/com/intellij/ide/actions/CreateDesktopEntryAction.java +++ b/platform/platform-impl/src/com/intellij/ide/actions/CreateDesktopEntryAction.java @@ -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); } diff --git a/platform/platform-impl/src/com/intellij/ide/actions/CreateLauncherScriptAction.java b/platform/platform-impl/src/com/intellij/ide/actions/CreateLauncherScriptAction.java index c2122e64f7de..65b2da4e667d 100644 --- a/platform/platform-impl/src/com/intellij/ide/actions/CreateLauncherScriptAction.java +++ b/platform/platform-impl/src/com/intellij/ide/actions/CreateLauncherScriptAction.java @@ -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); }