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

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

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

* commit '913f87ef':
  IndexOutOfBoundsException in the PrintSpoolerService dump.
parents 0d5fe0dd 913f87ef
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();