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

Commit 5bb6b996 authored by Svetoslav's avatar Svetoslav Committed by Android Git Automerger
Browse files

am c466f26d: am f25081e0: Merge "Fix a crash in PrintSpooler." into lmp-dev

* commit 'c466f26da82ba18fb91894129a37b565219c3cc4':
  Fix a crash in PrintSpooler.
parents 9ea9a37c 0e23dd87
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -258,7 +258,8 @@ public final class RemotePrintDocument {
            Log.i(LOG_TAG, "[CALLED] finish()");
        }
        if (mState != STATE_STARTED && mState != STATE_UPDATED
                && mState != STATE_FAILED && mState != STATE_CANCELING) {
                && mState != STATE_FAILED && mState != STATE_CANCELING
                && mState != STATE_CANCELED) {
            throw new IllegalStateException("Cannot finish in state:"
                    + stateToString(mState));
        }