From 095f0ba09c802040fcc63affb3c96d7bcd672d63 Mon Sep 17 00:00:00 2001 From: Vincent Breitmoser Date: Tue, 27 Feb 2024 11:13:34 +0100 Subject: [PATCH] Drop unused notification channel --- .../sufficientlysecure/keychain/NotificationChannelManager.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/NotificationChannelManager.java b/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/NotificationChannelManager.java index 310be32ac..c2ad76853 100644 --- a/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/NotificationChannelManager.java +++ b/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/NotificationChannelManager.java @@ -11,7 +11,6 @@ import androidx.annotation.StringRes; public class NotificationChannelManager { - public static final String KEYSERVER_SYNC = "keyserverSync"; public static final String PERMISSION_REQUESTS = "permissionRequests"; public static final String PASSPHRASE_CACHE = "passphraseCache"; public static final String ORBOT = "orbot"; @@ -37,7 +36,6 @@ public class NotificationChannelManager { return; } - createNotificationChannel(KEYSERVER_SYNC, R.string.notify_channel_keysync, NotificationManager.IMPORTANCE_MIN); createNotificationChannel(PERMISSION_REQUESTS, R.string.notify_channel_permission, NotificationManager.IMPORTANCE_MIN); createNotificationChannel(PASSPHRASE_CACHE, R.string.notify_channel_passcache, NotificationManager.IMPORTANCE_NONE); createNotificationChannel(ORBOT, R.string.notify_channel_orbot, NotificationManager.IMPORTANCE_DEFAULT);