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

Commit 0025841e authored by Selim Cinek's avatar Selim Cinek Committed by android-build-merger
Browse files

Merge "Fixed a crash when dumping groupmanager" into nyc-dev am: 95b3120d

am: dc1bc46e

* commit 'dc1bc46e':
  Fixed a crash when dumping groupmanager

Change-Id: I5c8ac1e87743c75aa69ebdeefd35c0eef7d6a963
parents 85b3e58b dc1bc46e
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -459,7 +459,8 @@ public class NotificationGroupManager implements HeadsUpManager.OnHeadsUpChanged

        @Override
        public String toString() {
            String result = "    summary:\n      " + summary.notification;
            String result = "    summary:\n      "
                    + (summary != null ? summary.notification : "null");
            result += "\n    children size: " + children.size();
            for (NotificationData.Entry child : children) {
                result += "\n      " + child.notification;