Merge "Fixed a bug where systemui could crash while cloning" into oc-dev am: b9eb205bd7

am: f62145a41a

Change-Id: I55c470ed539b2ace8d79f7418a8c0ead1f19c3a1
This commit is contained in:
Selim Cinek
2017-06-09 04:36:27 +00:00
committed by android-build-merger
2 changed files with 2 additions and 2 deletions

View File

@@ -2418,7 +2418,7 @@ public class RemoteViews implements Parcelable, Filter {
}
public RemoteViews clone() {
public synchronized RemoteViews clone() {
Preconditions.checkState(mIsRoot, "RemoteView has been attached to another RemoteView. "
+ "May only clone the root of a RemoteView hierarchy.");

View File

@@ -438,7 +438,7 @@ public class NotificationData {
final int N = mEntries.size();
for (int i = 0; i < N; i++) {
Entry entry = mEntries.valueAt(i);
final StatusBarNotification oldSbn = entry.notification.clone();
final StatusBarNotification oldSbn = entry.notification.cloneLight();
final String overrideGroupKey = getOverrideGroupKey(entry.key);
if (!Objects.equals(oldSbn.getOverrideGroupKey(), overrideGroupKey)) {
entry.notification.setOverrideGroupKey(overrideGroupKey);