diff options
| author | 2016-04-26 15:26:33 +0000 | |
|---|---|---|
| committer | 2016-04-26 15:26:35 +0000 | |
| commit | 6392db9df7ca1a809ff882e0792bf7fbc105ce96 (patch) | |
| tree | 0f632ef7892eaa39225992d383158eee7b8069b5 | |
| parent | efb951d4fefb004b94c0e3f9b3d8fab83b8803ca (diff) | |
| parent | 076bddde4bfd02613b0bd6efd3a7610898917c5e (diff) | |
Merge "cancel group children before summaries" into nyc-dev
| -rw-r--r-- | services/core/java/com/android/server/notification/NotificationManagerService.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/services/core/java/com/android/server/notification/NotificationManagerService.java b/services/core/java/com/android/server/notification/NotificationManagerService.java index e411579dbf84..9bdb14920fc8 100644 --- a/services/core/java/com/android/server/notification/NotificationManagerService.java +++ b/services/core/java/com/android/server/notification/NotificationManagerService.java @@ -3316,9 +3316,9 @@ public class NotificationManagerService extends SystemService { mNotificationList.remove(index); - cancelNotificationLocked(r, sendDelete, reason); cancelGroupChildrenLocked(r, callingUid, callingPid, listenerName, REASON_GROUP_SUMMARY_CANCELED); + cancelNotificationLocked(r, sendDelete, reason); updateLightsLocked(); } } |