diff options
| author | Jeff Sharkey <jsharkey@android.com> | 2019-02-28 12:06:45 -0700 |
|---|---|---|
| committer | Jeff Sharkey <jsharkey@android.com> | 2019-02-28 23:29:04 -0700 |
| commit | 9e8f83db6d969f1e1f47ffa0b0390d867491235b (patch) | |
| tree | 474c367ff40f2bb4d9abf26197d446e62b2ea575 /core/java/android/app/NotificationChannelGroup.java | |
| parent | cb4dd2791aae3da4476751b5f9a74f9ee2c83682 (diff) | |
All Parcelable CREATOR fields are @NonNull.
If they were null, then the Parcelable would fail to work.
Bug: 126726802
Test: manual
Change-Id: I7929ffa2f20e5de1c8e68e8263cca99496e9d014
Exempt-From-Owner-Approval: Trivial API annotations
Diffstat (limited to 'core/java/android/app/NotificationChannelGroup.java')
| -rw-r--r-- | core/java/android/app/NotificationChannelGroup.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/android/app/NotificationChannelGroup.java b/core/java/android/app/NotificationChannelGroup.java index 34cd9f029746..a8ee414cac0a 100644 --- a/core/java/android/app/NotificationChannelGroup.java +++ b/core/java/android/app/NotificationChannelGroup.java @@ -272,7 +272,7 @@ public final class NotificationChannelGroup implements Parcelable { return record; } - public static final Creator<NotificationChannelGroup> CREATOR = + public static final @android.annotation.NonNull Creator<NotificationChannelGroup> CREATOR = new Creator<NotificationChannelGroup>() { @Override public NotificationChannelGroup createFromParcel(Parcel in) { |
