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

Commit de93f124 authored by Dianne Hackborn's avatar Dianne Hackborn Committed by Android Git Automerger
Browse files

am d67f18cf: Merge "Fix crash when dump() is called on ReceiverList" into klp-dev

* commit 'd67f18cf':
  Fix crash when dump() is called on ReceiverList
parents e968a479 d67f18cf
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -69,7 +69,7 @@ final class ReceiverList extends ArrayList<BroadcastFilter>
    }
    
    void dumpLocal(PrintWriter pw, String prefix) {
        pw.print(prefix); pw.print("app="); pw.print(app.toShortString());
        pw.print(prefix); pw.print("app="); pw.print(app != null ? app.toShortString() : null);
            pw.print(" pid="); pw.print(pid); pw.print(" uid="); pw.print(uid);
            pw.print(" user="); pw.println(userId);
        if (curBroadcast != null || linkedToDeath) {