summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2021-09-30 23:15:06 +0000
committerAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2021-09-30 23:15:06 +0000
commitc44bcbee8c9375b36cfbcefb439cfbd95ea4060a (patch)
treeb48d512d19f0a4ae8b6c36a1453e36f1cfc9cd07
parent19fd4581c53841b12ecb768ec9d7f71fb5b5355b (diff)
parentd66a732b4a12cd0e8160634091107063113f76d1 (diff)
downloadCalendar-android12L-release.tar.gz
Change-Id: I8e7028a62bca4b98bd96fa1e62a3b5b41c6a724d
-rw-r--r--src/com/android/calendar/alerts/AlertReceiver.java6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/com/android/calendar/alerts/AlertReceiver.java b/src/com/android/calendar/alerts/AlertReceiver.java
index ce80cae1..ee0c508d 100644
--- a/src/com/android/calendar/alerts/AlertReceiver.java
+++ b/src/com/android/calendar/alerts/AlertReceiver.java
@@ -80,7 +80,6 @@ public class AlertReceiver extends BroadcastReceiver {
if (AlertService.DEBUG) {
Log.d(TAG, "onReceive: a=" + intent.getAction() + " " + intent.toString());
}
- closeNotificationShade(context);
}
public static NotificationWrapper makeBasicNotification(Context context, String title,
@@ -115,9 +114,4 @@ public class AlertReceiver extends BroadcastReceiver {
}
return notificationBuilder.getNotification();
}
-
- private void closeNotificationShade(Context context) {
- Intent closeNotificationShadeIntent = new Intent(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);
- context.sendBroadcast(closeNotificationShadeIntent);
- }
}