Drop unused notification channel

This commit is contained in:
Vincent Breitmoser
2024-02-27 11:13:34 +01:00
parent 9c94fc1f4d
commit 095f0ba09c

View File

@@ -11,7 +11,6 @@ import androidx.annotation.StringRes;
public class NotificationChannelManager { public class NotificationChannelManager {
public static final String KEYSERVER_SYNC = "keyserverSync";
public static final String PERMISSION_REQUESTS = "permissionRequests"; public static final String PERMISSION_REQUESTS = "permissionRequests";
public static final String PASSPHRASE_CACHE = "passphraseCache"; public static final String PASSPHRASE_CACHE = "passphraseCache";
public static final String ORBOT = "orbot"; public static final String ORBOT = "orbot";
@@ -37,7 +36,6 @@ public class NotificationChannelManager {
return; return;
} }
createNotificationChannel(KEYSERVER_SYNC, R.string.notify_channel_keysync, NotificationManager.IMPORTANCE_MIN);
createNotificationChannel(PERMISSION_REQUESTS, R.string.notify_channel_permission, 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(PASSPHRASE_CACHE, R.string.notify_channel_passcache, NotificationManager.IMPORTANCE_NONE);
createNotificationChannel(ORBOT, R.string.notify_channel_orbot, NotificationManager.IMPORTANCE_DEFAULT); createNotificationChannel(ORBOT, R.string.notify_channel_orbot, NotificationManager.IMPORTANCE_DEFAULT);