Remove misleading error log.

It's perfectly ok for a secondary display to not have a home stack.
There is no reason to report it.

Related to b/17677973.

Change-Id: Ia9d52cabb601760d32d2b847dfa0ca4f304e4e2a
This commit is contained in:
Craig Mautner
2014-10-02 12:24:02 -07:00
parent bc156ba430
commit 333c2ec883

View File

@@ -162,7 +162,7 @@ class DisplayContent {
}
TaskStack getHomeStack() {
if (mHomeStack == null) {
if (mHomeStack == null && mDisplayId == Display.DEFAULT_DISPLAY) {
Slog.e(TAG, "getHomeStack: Returning null from this=" + this);
}
return mHomeStack;