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

Commit 5f9fedc5 authored by Christopher Wiley's avatar Christopher Wiley Committed by android-build-merger
Browse files

Merge "IndexOutOfBoundsException observed in ProcessStats" am: 6408e2e5 am: eedd2b52

am: 53d12379

Change-Id: I4bcde8dde8c3bad7754e26dd56f8321032daa5a3
parents 11cbf7b8 53d12379
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -379,7 +379,7 @@ public final class ProcessState {

    public void setState(int state, long now) {
        ensureNotDead();
        if (mCurState != state) {
        if (!mDead && (mCurState != state)) {
            //Slog.i(TAG, "Setting state in " + mName + "/" + mPackage + ": " + state);
            commitStateTime(now);
            mCurState = state;