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

Commit f36af164 authored by Dianne Hackborn's avatar Dianne Hackborn Committed by Android (Google) Code Review
Browse files

Merge "Whoops, actually exclude pre-HC apps." into honeycomb

parents 5503d803 842e04b2
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -2628,12 +2628,12 @@ public final class ActivityThread {
        ActivityClientRecord r = mActivities.get(token);

        if (r == null) {
            Log.w(TAG, "handleWindowVisibility: no activity for token " + token);
            Log.w(TAG, "handleSleeping: no activity for token " + token);
            return;
        }

        if (sleeping) {
            if (!r.stopped) {
            if (!r.stopped && !r.isPreHoneycomb()) {
                try {
                    // Now we are idle.
                    r.activity.performStop();