🚨 Suppress some warnings about unused parameters
[Sone.git] / src / main / kotlin / net / pterodactylus / sone / main / TickerShutdown.kt
index 5f96050..c95da09 100644 (file)
@@ -29,7 +29,7 @@ import javax.inject.*
 class TickerShutdown @Inject constructor(@Named("notification") private val notificationTicker: ScheduledExecutorService) {
 
        @Subscribe
-       fun shutdown(shutdown: Shutdown) {
+       fun shutdown(@Suppress("UNUSED_PARAMETER") shutdown: Shutdown) {
                notificationTicker.shutdown()
        }