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

Commit da28742d authored by Matías Hernández's avatar Matías Hernández
Browse files

Fix NPE in NotificationManagerService bugreport dump

Bug: 438455903
Test: dumpsys
Flag: EXEMPT Trivial bugfix
Change-Id: I2ef9af8e3ddd12e7ad068897bebfafd1d46e8626
parent 1f83e6a2
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();