summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Craig Mautner <cmautner@google.com> 2014-01-24 17:26:52 -0800
committer Craig Mautner <cmautner@google.com> 2014-01-24 17:26:52 -0800
commit38eda9c42bf327f6f521c766ea716305e5f71c05 (patch)
tree09c05762851f4426caa5fea62228b39346991ece
parent5d094b947b328d2631a0203c1527b0c7c20ce219 (diff)
Remove unnecessary logging.
Fixes bug 12593710. Change-Id: I55c33bb4d6c9e17e810be7cc033e01fb9d2d6cf7
-rw-r--r--services/core/java/com/android/server/am/ActivityStackSupervisor.java9
1 files changed, 0 insertions, 9 deletions
diff --git a/services/core/java/com/android/server/am/ActivityStackSupervisor.java b/services/core/java/com/android/server/am/ActivityStackSupervisor.java
index c31669d6a464..13616b3ba4e7 100644
--- a/services/core/java/com/android/server/am/ActivityStackSupervisor.java
+++ b/services/core/java/com/android/server/am/ActivityStackSupervisor.java
@@ -1524,9 +1524,6 @@ public final class ActivityStackSupervisor implements DisplayListener {
} else {
ActivityOptions.abort(options);
}
- if (r.task == null) Slog.v(TAG,
- "startActivityUncheckedLocked: task left null",
- new RuntimeException("here").fillInStackTrace());
return ActivityManager.START_RETURN_INTENT_TO_CALLER;
}
if ((launchFlags &
@@ -1619,9 +1616,6 @@ public final class ActivityStackSupervisor implements DisplayListener {
} else {
ActivityOptions.abort(options);
}
- if (r.task == null) Slog.v(TAG,
- "startActivityUncheckedLocked: task left null",
- new RuntimeException("here").fillInStackTrace());
return ActivityManager.START_TASK_TO_FRONT;
}
}
@@ -1726,9 +1720,6 @@ public final class ActivityStackSupervisor implements DisplayListener {
targetStack.resumeTopActivityLocked(null);
}
ActivityOptions.abort(options);
- if (r.task == null) Slog.w(TAG,
- "startActivityUncheckedLocked: task left null",
- new RuntimeException("here").fillInStackTrace());
return ActivityManager.START_DELIVERED_TO_TOP;
}
} else if (!addingToTask &&