From 6d74fc00bbf15cfdf8eeebe2aadb181415fd97fa 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 | 12 ++++++++++-- .../notifications/NotificationManager.kt | 1 - 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7b19d48..eab587a 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 @@ -80,11 +80,19 @@ - Initial release [Unreleased]: https://github.com/WarningImHack3r/intellij-shadcn-plugin/compare/v0.7.7...HEAD + [0.7.7]: https://github.com/WarningImHack3r/intellij-shadcn-plugin/compare/v0.7.6...v0.7.7 + [0.7.6]: https://github.com/WarningImHack3r/intellij-shadcn-plugin/compare/v0.7.5...v0.7.6 + [0.7.5]: https://github.com/WarningImHack3r/intellij-shadcn-plugin/compare/v0.7.4...v0.7.5 + [0.7.4]: https://github.com/WarningImHack3r/intellij-shadcn-plugin/compare/v0.7.3...v0.7.4 + [0.7.3]: https://github.com/WarningImHack3r/intellij-shadcn-plugin/compare/v0.7.2...v0.7.3 + [0.7.2]: https://github.com/WarningImHack3r/intellij-shadcn-plugin/commits/v0.7.1...v0.7.2 + [0.7.1]: https://github.com/WarningImHack3r/intellij-shadcn-plugin/commits/v0.7.0...v0.7.1 + [0.7.0]: https://github.com/WarningImHack3r/intellij-shadcn-plugin/commits/v0.7.0 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) {