From f8b422fd67a91fa42b3c649c8213e46670968d66 Mon Sep 17 00:00:00 2001 From: WarningImHack3r <43064022+WarningImHack3r@users.noreply.github.com> Date: Sat, 30 Mar 2024 14:37:02 +0100 Subject: [PATCH] Fix typo and useless import --- CHANGELOG.md | 4 ++-- .../intellijshadcnplugin/notifications/NotificationManager.kt | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7b19d48..482ff95 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,11 +16,11 @@ ### Changed -- Improve HTTP client for safer usage and better performance (#30) +- Improve HTTP client for safer usage and better performance ### Fixed -- Fix a crash when sending a notification +- Fix a crash when sending a notification (#30) ## [0.7.6] - 2024-03-24 diff --git a/src/main/kotlin/com/github/warningimhack3r/intellijshadcnplugin/notifications/NotificationManager.kt b/src/main/kotlin/com/github/warningimhack3r/intellijshadcnplugin/notifications/NotificationManager.kt index 26c8aab..d11a71a 100644 --- a/src/main/kotlin/com/github/warningimhack3r/intellijshadcnplugin/notifications/NotificationManager.kt +++ b/src/main/kotlin/com/github/warningimhack3r/intellijshadcnplugin/notifications/NotificationManager.kt @@ -6,7 +6,6 @@ import com.intellij.notification.NotificationType import com.intellij.notification.Notifications import com.intellij.openapi.project.Project import com.intellij.util.concurrency.AppExecutorUtil -import java.util.concurrent.ScheduledExecutorService import java.util.concurrent.TimeUnit class NotificationManager(val project: Project? = null) {