summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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);
- }
}