diff options
| author | 2014-04-07 20:07:22 +0200 | |
|---|---|---|
| committer | 2014-04-07 20:22:24 +0200 | |
| commit | a3e5bcb60efdf1202f627d25d30693089f7d535d (patch) | |
| tree | 445c059fbd994468bd0deca2aaca667c5b47b355 | |
| parent | 2d925545b6190153928658ce320d9b681baad882 (diff) | |
Fixed crash in PanelView dump
Bugreports crashed when dumping PanelView.
Bug: 13872972
Change-Id: I3bd2b5321dd208766248f6506c5592190366e5ea
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/statusbar/phone/PanelView.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/phone/PanelView.java b/packages/SystemUI/src/com/android/systemui/statusbar/phone/PanelView.java index 3c8af3007b00..ec35d41ea557 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/phone/PanelView.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/phone/PanelView.java @@ -793,7 +793,7 @@ public class PanelView extends FrameLayout { } public void dump(FileDescriptor fd, PrintWriter pw, String[] args) { - pw.println(String.format("[PanelView(%s): expandedHeight=%f maxPanelHeight=%f closing=%s" + pw.println(String.format("[PanelView(%s): expandedHeight=%f maxPanelHeight=%d closing=%s" + " tracking=%s rubberbanding=%s justPeeked=%s peekAnim=%s%s timeAnim=%s%s" + "]", this.getClass().getSimpleName(), |