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

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

am 7132b9b8: am 57344fea: am 913f87ef: Merge "IndexOutOfBoundsException in the...

am 7132b9b8: am 57344fea: am 913f87ef: Merge "IndexOutOfBoundsException in the PrintSpoolerService dump." into klp-dev

* commit '7132b9b8':
  IndexOutOfBoundsException in the PrintSpoolerService dump.
parents 973d778b 7132b9b8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -236,7 +236,7 @@ public final class PrintSpoolerService extends Service {
    @Override
    protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) {
        synchronized (mLock) {
            String prefix = args[0];
            String prefix = (args.length > 0) ? args[0] : "";
            String tab = "  ";

            pw.append(prefix).append("print jobs:").println();