🚨 Suppress some warnings about unused parameters
[Sone.git] / src / main / kotlin / net / pterodactylus / sone / web / notification / ConfigNotReadHandler.kt
index e2a1ada..4ad525b 100644 (file)
@@ -20,14 +20,15 @@ package net.pterodactylus.sone.web.notification
 import com.google.common.eventbus.*
 import net.pterodactylus.sone.core.event.*
 import net.pterodactylus.util.notify.*
+import javax.inject.*
 
 /**
  * Handler for [ConfigNotRead] events.
  */
-class ConfigNotReadHandler(private val notificationManager: NotificationManager, private val notification: TemplateNotification) {
+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)
        }