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

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

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

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

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