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

Commit b2d397e1 authored by Svetoslav Ganov's avatar Svetoslav Ganov Committed by Android Git Automerger
Browse files

am b1de951a: am da59cd60: Merge "Wrong index while dumping the print...

am b1de951a: am da59cd60: Merge "Wrong index while dumping the print sub-system\'s state." into klp-dev

* commit 'b1de951a':
  Wrong index while dumping the print sub-system's state.
parents 8c33d89c b1de951a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -366,7 +366,7 @@ public final class PrintManagerService extends IPrintManager.Stub {
                pw.println("PRINT MANAGER STATE (dumpsys print)");
                final int userStateCount = mUserStates.size();
                for (int i = 0; i < userStateCount; i++) {
                    UserState userState = mUserStates.get(i);
                    UserState userState = mUserStates.valueAt(i);
                    userState.dump(fd, pw, "");
                    pw.println();
                }