From e6345b5194b89b46ba28dfcea9e2e0699c0705ba Mon Sep 17 00:00:00 2001 From: Chris Wren Date: Mon, 28 Apr 2014 10:53:05 -0400 Subject: [PATCH] Remove opPkg from the notification key. Change-Id: Iadff2dbeb3c9ec69837d3b6e763f24d687ee368b --- .../android/service/notification/StatusBarNotification.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/java/android/service/notification/StatusBarNotification.java b/core/java/android/service/notification/StatusBarNotification.java index 2c0b76de0d2b7..72720d197f3d4 100644 --- a/core/java/android/service/notification/StatusBarNotification.java +++ b/core/java/android/service/notification/StatusBarNotification.java @@ -87,7 +87,7 @@ public class StatusBarNotification implements Parcelable { } private String key() { - return pkg + '|' + opPkg + '|' + id + '|' + tag + '|' + uid; + return pkg + '|' + id + '|' + tag + '|' + uid; } public void writeToParcel(Parcel out, int flags) {