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

Commit 6408e2e5 authored by Christopher Wiley's avatar Christopher Wiley Committed by Gerrit Code Review
Browse files

Merge "IndexOutOfBoundsException observed in ProcessStats"

parents 2dc11c05 5c6740a3
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;