🚨 Suppress some warnings about unused parameters
[Sone.git] / src / main / kotlin / net / pterodactylus / sone / web / notification / ConfigNotReadHandler.kt
index 46961c0..4ad525b 100644 (file)
@@ -28,7 +28,7 @@ import javax.inject.*
 class ConfigNotReadHandler @Inject constructor(private val notificationManager: NotificationManager, @Named("configNotRead") private val notification: TemplateNotification) {
 
        @Subscribe
-       fun configNotRead(configNotRead: ConfigNotRead) {
+       fun configNotRead(@Suppress("UNUSED_PARAMETER") configNotRead: ConfigNotRead) {
                notificationManager.addNotification(notification)
        }