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

Commit da59cd60 authored by Svetoslav Ganov's avatar Svetoslav Ganov Committed by Android (Google) Code Review
Browse files

Merge "Wrong index while dumping the print sub-system's state." into klp-dev

parents 8856af5a 3cb2be97
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();
                }