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

Commit 5149fef6 authored by Christopher Wiley's avatar Christopher Wiley Committed by android-build-merger
Browse files

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

Merge "IndexOutOfBoundsException observed in ProcessStats" am: 6408e2e5 am: eedd2b52 am: 53d12379
am: 5f9fedc5

Change-Id: Id23911d3ff1e90cf88711a7aa7749acdd81a26ae
parents 3375a3ee 5f9fedc5
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;