diff options
author | Bernardo Rufino <brufino@google.com> | 2022-01-12 17:44:44 +0000 |
---|---|---|
committer | Bernardo Rufino <brufino@google.com> | 2022-01-12 17:44:44 +0000 |
commit | 46c1b43c2c45c6e61c9bb4781b487d58762b5eac (patch) | |
tree | e6fef4ec98b0aee641f3cd6296636594af65918c /framework/java/android/bluetooth/BluetoothGattService.java | |
parent | 54298877a7406e73b9f746f59751614a74a2e500 (diff) |
Revert "Migrate unsafe parcel APIs in framework-minus-apex"
This reverts commit 54298877a7406e73b9f746f59751614a74a2e500.
Reason for revert: b/214053959
Change-Id: Ic271bab1d3eaf677a5989dda9deb944ee2ad6850
Diffstat (limited to 'framework/java/android/bluetooth/BluetoothGattService.java')
-rw-r--r-- | framework/java/android/bluetooth/BluetoothGattService.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/java/android/bluetooth/BluetoothGattService.java b/framework/java/android/bluetooth/BluetoothGattService.java index 36bc4772e0..f64d09fc30 100644 --- a/framework/java/android/bluetooth/BluetoothGattService.java +++ b/framework/java/android/bluetooth/BluetoothGattService.java @@ -180,7 +180,7 @@ public class BluetoothGattService implements Parcelable { }; private BluetoothGattService(Parcel in) { - mUuid = ((ParcelUuid) in.readParcelable(null, android.os.ParcelUuid.class)).getUuid(); + mUuid = ((ParcelUuid) in.readParcelable(null)).getUuid(); mInstanceId = in.readInt(); mServiceType = in.readInt(); |