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

Commit b558bac5 authored by Treehugger Robot's avatar Treehugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Fix NPE in NotificationManagerService bugreport dump" into main

parents faa1a097 da28742d
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -392,7 +392,8 @@ abstract public class ManagedServices {
                    }
                }
                final HashSet<Integer> uids = mApprovedUids.get(userId);
                pw.println("    Approved uids for user " + userId + ": " + uids.toString());
                pw.println("    Approved uids for user " + userId + ": "
                        + (uids != null ? uids.toString() : "none"));
            }
            pw.println("    Has user set:");
            Set<Integer> userIds = mUserSetServices.keySet();