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

Commit d7a22f64 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: 2e0e23b6

* commit '2e0e23b6':
  Fixed a crash when dumping groupmanager

Change-Id: Ic6e6e07b46c1dc20e16f472982bd3f63e0e03311
parents 85b3e58b 2e0e23b6
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;