summaryrefslogtreecommitdiffstats
path: root/packages
diff options
context:
space:
mode:
authorChristoph Studer <chstuder@google.com>2014-05-28 23:40:00 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2014-05-28 23:40:02 +0000
commit3326a8782f7aae58b76b96d52d7756787ab401d0 (patch)
treedab5754ec3106be03919960181486387339a2d18 /packages
parent56f2daab14a7b0161e36c86bdc61cd628a847245 (diff)
parent344f0099ab69107f0262bf941e87b84d725638af (diff)
downloadframeworks_base-3326a8782f7aae58b76b96d52d7756787ab401d0.zip
frameworks_base-3326a8782f7aae58b76b96d52d7756787ab401d0.tar.gz
frameworks_base-3326a8782f7aae58b76b96d52d7756787ab401d0.tar.bz2
Merge "SysUI: Fix bug where ZEN notification icon was shown" into lmp-preview-dev
Diffstat (limited to 'packages')
-rw-r--r--packages/SystemUI/src/com/android/systemui/statusbar/InterceptedNotifications.java3
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 993bb92..24da5c2 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) {