diff options
author | Chris Wren <cwren@android.com> | 2014-10-29 16:43:26 -0400 |
---|---|---|
committer | Chris Wren <cwren@android.com> | 2014-10-29 16:43:51 -0400 |
commit | 755f4021ae9a21936a04083098ffbbdac912625c (patch) | |
tree | c4abeb6bfd8e9d92103af0f4f6ede85362ac1724 /packages/SystemUI/src/com/android/systemui/statusbar | |
parent | b7efa04d529b87672b1167341852eca8ee9813c7 (diff) | |
download | frameworks_base-755f4021ae9a21936a04083098ffbbdac912625c.zip frameworks_base-755f4021ae9a21936a04083098ffbbdac912625c.tar.gz frameworks_base-755f4021ae9a21936a04083098ffbbdac912625c.tar.bz2 |
fix build break from mis-named DEBUG flag in SystemUI
Change-Id: I55459fe090ae4c159ebdad8b60658b25db29271e
Diffstat (limited to 'packages/SystemUI/src/com/android/systemui/statusbar')
-rw-r--r-- | packages/SystemUI/src/com/android/systemui/statusbar/BaseStatusBar.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/BaseStatusBar.java b/packages/SystemUI/src/com/android/systemui/statusbar/BaseStatusBar.java index 67d4bdf..09d0b5d 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/BaseStatusBar.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/BaseStatusBar.java @@ -115,7 +115,7 @@ public abstract class BaseStatusBar extends SystemUI implements public static final boolean MULTIUSER_DEBUG = false; // STOPSHIP disable once we resolve b/18102199 - private static final boolean ACTION_BUTTONS_DEBUG = true; + private static final boolean NOTIFICATION_CLICK_DEBUG = true; protected static final int MSG_SHOW_RECENT_APPS = 1019; protected static final int MSG_HIDE_RECENT_APPS = 1020; |