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

Commit 53d12379 authored by Christopher Wiley's avatar Christopher Wiley Committed by android-build-merger
Browse files

Merge "IndexOutOfBoundsException observed in ProcessStats" am: 6408e2e5

am: eedd2b52

Change-Id: Ica176cd4b1bf569dfa03bdcefac622deddb57eca
parents f136fa87 eedd2b52
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;