Browse Source

Remove unnecessary boundType parameter

pull/2928/head
Benoit Marty 4 months ago committed by Benoit Marty
parent
commit
c253da11b0
  1. 2
      features/preferences/impl/src/main/kotlin/io/element/android/features/preferences/impl/notifications/SystemNotificationsEnabledProvider.kt

2
features/preferences/impl/src/main/kotlin/io/element/android/features/preferences/impl/notifications/SystemNotificationsEnabledProvider.kt

@ -29,7 +29,7 @@ interface SystemNotificationsEnabledProvider { @@ -29,7 +29,7 @@ interface SystemNotificationsEnabledProvider {
}
@SingleIn(AppScope::class)
@ContributesBinding(AppScope::class, boundType = SystemNotificationsEnabledProvider::class)
@ContributesBinding(AppScope::class)
class DefaultSystemNotificationsEnabledProvider @Inject constructor(
@ApplicationContext private val context: Context,
) : SystemNotificationsEnabledProvider {

Loading…
Cancel
Save