From ac8911fda89bbc10b29d96565213b04b36897bc6 Mon Sep 17 00:00:00 2001 From: Julia Reynolds Date: Wed, 20 Oct 2021 13:20:33 -0400 Subject: [PATCH] Remove unused code Test: make Bug: 194833441 Change-Id: I99a91281fd8f8a347f80ebfa881eafb960d7f144 --- .../settings/notification/NotificationBackend.java | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/com/android/settings/notification/NotificationBackend.java b/src/com/android/settings/notification/NotificationBackend.java index 25e37a397f9..cf8801fdb83 100644 --- a/src/com/android/settings/notification/NotificationBackend.java +++ b/src/com/android/settings/notification/NotificationBackend.java @@ -404,15 +404,6 @@ public class NotificationBackend { } } - public int getNumAppsBypassingDnd(int uid) { - try { - return sINM.getAppsBypassingDndCount(uid); - } catch (Exception e) { - Log.w(TAG, "Error calling NoMan", e); - return 0; - } - } - public boolean shouldHideSilentStatusBarIcons(Context context) { try { return sINM.shouldHideSilentStatusIcons(context.getPackageName());