diff options
author | Christoph Studer <chstuder@google.com> | 2014-05-28 14:56:15 +0200 |
---|---|---|
committer | Christoph Studer <chstuder@google.com> | 2014-05-28 14:56:15 +0200 |
commit | 344f0099ab69107f0262bf941e87b84d725638af (patch) | |
tree | 08a3bad0e5d56a15efca19ced4cf25043b3f508d /packages | |
parent | c22dbb69194c8e8fe2a32326d1f37a738cad0904 (diff) | |
download | frameworks_base-344f0099ab69107f0262bf941e87b84d725638af.zip frameworks_base-344f0099ab69107f0262bf941e87b84d725638af.tar.gz frameworks_base-344f0099ab69107f0262bf941e87b84d725638af.tar.bz2 |
SysUI: Fix bug where ZEN notification icon was shown
Bug: 15303664
Change-Id: I295293e62ee878be9b4aa7b13e0c014f935072ca
Diffstat (limited to 'packages')
-rw-r--r-- | packages/SystemUI/src/com/android/systemui/statusbar/InterceptedNotifications.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/InterceptedNotifications.java b/packages/SystemUI/src/com/android/systemui/statusbar/InterceptedNotifications.java index 0555879..466c405 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/InterceptedNotifications.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/InterceptedNotifications.java @@ -31,7 +31,6 @@ import com.android.systemui.statusbar.phone.PhoneStatusBar; public class InterceptedNotifications { private static final String TAG = "InterceptedNotifications"; private static final String EXTRA_INTERCEPT = "android.intercept"; - private static final String SYNTHETIC_KEY = "InterceptedNotifications.SYNTHETIC_KEY"; private final Context mContext; private final PhoneStatusBar mBar; @@ -71,7 +70,7 @@ public class InterceptedNotifications { } public boolean isSyntheticEntry(Entry ent) { - return ent.key.equals(SYNTHETIC_KEY); + return ent.key.equals(mSynKey); } public void update(StatusBarNotification notification) { |