diff --git a/vector/src/main/java/im/vector/app/features/settings/notifications/VectorSettingsPushRuleNotificationPreferenceFragment.kt b/vector/src/main/java/im/vector/app/features/settings/notifications/VectorSettingsPushRuleNotificationPreferenceFragment.kt index 7f5ed0084d..8019ac4f53 100644 --- a/vector/src/main/java/im/vector/app/features/settings/notifications/VectorSettingsPushRuleNotificationPreferenceFragment.kt +++ b/vector/src/main/java/im/vector/app/features/settings/notifications/VectorSettingsPushRuleNotificationPreferenceFragment.kt @@ -92,7 +92,6 @@ abstract class VectorSettingsPushRuleNotificationPreferenceFragment return rule.enabled && !rule.shouldNotNotify() } - override fun bindPref() { for (preferenceKey in prefKeyToPushRuleId.keys) { val preference = findPreference(preferenceKey)!! @@ -141,5 +140,4 @@ abstract class VectorSettingsPushRuleNotificationPreferenceFragment private fun refreshDisplay() { listView?.adapter?.notifyDataSetChanged() } - }