From 49634b76198461ba708865499669bd478c521c97 Mon Sep 17 00:00:00 2001 From: Mady Mellor Date: Thu, 30 Apr 2020 11:12:19 -0700 Subject: [PATCH] Remove a stopship Test: treehugger Bug: 142218092 Change-Id: Ib05139c3d2d186b7287f3245af384f609b09d089 --- .../server/notification/PreferencesHelper.java | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/services/core/java/com/android/server/notification/PreferencesHelper.java b/services/core/java/com/android/server/notification/PreferencesHelper.java index a4b99b376b304..ec0fc4a343879 100644 --- a/services/core/java/com/android/server/notification/PreferencesHelper.java +++ b/services/core/java/com/android/server/notification/PreferencesHelper.java @@ -166,13 +166,6 @@ public class PreferencesHelper implements RankingConfig { private boolean mAllowInvalidShortcuts = false; - private static final String BADGING_FORCED_TRUE = "force_badging_true_for_bug"; - - // STOPSHIP (b/142218092) this should be removed before ship - static boolean wasBadgingForcedTrue(Context context) { - return Settings.Secure.getInt(context.getContentResolver(), BADGING_FORCED_TRUE, 0) != 0; - } - public PreferencesHelper(Context context, PackageManager pm, RankingHandler rankingHandler, ZenModeHelper zenHelper, NotificationChannelLogger notificationChannelLogger, AppOpsManager appOpsManager) { @@ -183,14 +176,6 @@ public class PreferencesHelper implements RankingConfig { mNotificationChannelLogger = notificationChannelLogger; mAppOps = appOpsManager; - // STOPSHIP (b/142218092) this should be removed before ship - if (!wasBadgingForcedTrue(context)) { - Settings.Secure.putInt(mContext.getContentResolver(), - Settings.Secure.NOTIFICATION_BADGING, - DEFAULT_SHOW_BADGE ? 1 : 0); - Settings.Secure.putInt(context.getContentResolver(), BADGING_FORCED_TRUE, 1); - } - updateBadgingEnabled(); updateBubblesEnabled(); syncChannelsBypassingDnd(mContext.getUserId());