Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0eeab2b0 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Workaround to dump error log instead of exception" into sc-v2-dev

parents 679377ad 77ed8e57
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -4969,7 +4969,8 @@ public final class ActivityThread extends ClientTransactionHandler
                Slog.w(TAG, "Activity top position already set to onTop=" + onTop);
                return;
            }
            throw new IllegalStateException("Activity top position already set to onTop=" + onTop);
            // TODO(b/209744518): Remove this short-term workaround while fixing the binder failure.
            Slog.e(TAG, "Activity top position already set to onTop=" + onTop);
        }

        r.isTopResumedActivity = onTop;