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

Commit e6692e20 authored by Chilun's avatar Chilun Committed by Automerger Merge Worker
Browse files

[RESTRICT AUTOMERGE] Workaround to dump error log instead of exception am: f8fc1326

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/15690060

Change-Id: I8107e094cd6182434683d359a52d9e0855c48221
parents 0e3a87bc f8fc1326
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -4911,7 +4911,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/197484331): Remove this short-term workaround while fixing the binder failure.
            Slog.e(TAG, "Activity top position already set to onTop=" + onTop);
        }

        r.isTopResumedActivity = onTop;