🔀 Merge branch 'release/v82'
[Sone.git] / src / main / kotlin / net / pterodactylus / sone / main / TickerShutdown.kt
index 5f96050..de15cbe 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Sone - TickerShutdown.kt - Copyright Â© 2019 David â€˜Bombe’ Roden
+ * Sone - TickerShutdown.kt - Copyright Â© 2019–2020 David â€˜Bombe’ Roden
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -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()
        }