Merge "Fixed a crash when dumping groupmanager" into nyc-dev
This commit is contained in:
@@ -459,7 +459,8 @@ public class NotificationGroupManager implements HeadsUpManager.OnHeadsUpChanged
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String toString() {
|
public String toString() {
|
||||||
String result = " summary:\n " + summary.notification;
|
String result = " summary:\n "
|
||||||
|
+ (summary != null ? summary.notification : "null");
|
||||||
result += "\n children size: " + children.size();
|
result += "\n children size: " + children.size();
|
||||||
for (NotificationData.Entry child : children) {
|
for (NotificationData.Entry child : children) {
|
||||||
result += "\n " + child.notification;
|
result += "\n " + child.notification;
|
||||||
|
|||||||
Reference in New Issue
Block a user