am 4fed68a2: am c63aa962: Merge "Fix NPE." into jb-mr1-dev

* commit '4fed68a2b1c7d35f421d8eee672138e55b769d86':
  Fix NPE.
This commit is contained in:
Hiroshi Lockheimer
2012-10-23 16:32:37 -07:00
committed by Android Git Automerger

View File

@@ -121,7 +121,9 @@ public class StatusBarWindowView extends FrameLayout
}
public void cancelExpandHelper() {
mExpandHelper.cancel();
if (mExpandHelper != null) {
mExpandHelper.cancel();
}
}
}