Merge "Null check action cloning." into nyc-mr1-dev

This commit is contained in:
Julia Reynolds
2016-09-19 20:35:32 +00:00
committed by Android (Google) Code Review

View File

@@ -1229,7 +1229,7 @@ public class Notification implements Parcelable
getIcon(),
title,
actionIntent, // safe to alias
new Bundle(mExtras),
mExtras == null ? new Bundle() : new Bundle(mExtras),
getRemoteInputs(),
getAllowGeneratedReplies());
}