🚨 Suppress some warnings about unused parameters
[Sone.git] / src / main / kotlin / net / pterodactylus / sone / web / notification / StartupHandler.kt
index 06acf94..4d81576 100644 (file)
@@ -33,7 +33,7 @@ class StartupHandler @Inject constructor(
                @Named("notification") private val ticker: ScheduledExecutorService) {
 
        @Subscribe
-       fun startup(startup: Startup) {
+       fun startup(@Suppress("UNUSED_PARAMETER") startup: Startup) {
                notificationManager.addNotification(notification)
                ticker.schedule({ notificationManager.removeNotification(notification) }, 2, MINUTES)
        }