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 | 13613a3f176ab3e10367685367443dddeee77db5 (patch) | |
| tree | b79eedb5189dcf0660b938b1b7f3b00af8d898ed /framework/java/android/bluetooth/le/PeriodicAdvertisingReport.java | |
| parent | ef1bb7544282711a03959fb9187af95229b9f228 (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 'framework/java/android/bluetooth/le/PeriodicAdvertisingReport.java')
| -rw-r--r-- | framework/java/android/bluetooth/le/PeriodicAdvertisingReport.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/java/android/bluetooth/le/PeriodicAdvertisingReport.java b/framework/java/android/bluetooth/le/PeriodicAdvertisingReport.java index 73a2e74de5..7a8c2c6716 100644 --- a/framework/java/android/bluetooth/le/PeriodicAdvertisingReport.java +++ b/framework/java/android/bluetooth/le/PeriodicAdvertisingReport.java @@ -171,7 +171,7 @@ public final class PeriodicAdvertisingReport implements Parcelable { + ", data=" + Objects.toString(mData) + ", timestampNanos=" + mTimestampNanos + '}'; } - public static final Parcelable.Creator<PeriodicAdvertisingReport> CREATOR = + public static final @android.annotation.NonNull Parcelable.Creator<PeriodicAdvertisingReport> CREATOR = new Creator<PeriodicAdvertisingReport>() { @Override public PeriodicAdvertisingReport createFromParcel(Parcel source) { |
