summaryrefslogtreecommitdiff
path: root/framework/java/android/bluetooth/BluetoothGattIncludedService.java
diff options
context:
space:
mode:
authorBernardo Rufino <brufino@google.com>2022-01-12 17:44:44 +0000
committerBernardo Rufino <brufino@google.com>2022-01-12 17:44:44 +0000
commit46c1b43c2c45c6e61c9bb4781b487d58762b5eac (patch)
treee6fef4ec98b0aee641f3cd6296636594af65918c /framework/java/android/bluetooth/BluetoothGattIncludedService.java
parent54298877a7406e73b9f746f59751614a74a2e500 (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/BluetoothGattIncludedService.java')
-rw-r--r--framework/java/android/bluetooth/BluetoothGattIncludedService.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/java/android/bluetooth/BluetoothGattIncludedService.java b/framework/java/android/bluetooth/BluetoothGattIncludedService.java
index 1ae2ca0a92..5580619033 100644
--- a/framework/java/android/bluetooth/BluetoothGattIncludedService.java
+++ b/framework/java/android/bluetooth/BluetoothGattIncludedService.java
@@ -76,7 +76,7 @@ public class BluetoothGattIncludedService implements Parcelable {
};
private BluetoothGattIncludedService(Parcel in) {
- mUuid = ((ParcelUuid) in.readParcelable(null, android.os.ParcelUuid.class)).getUuid();
+ mUuid = ((ParcelUuid) in.readParcelable(null)).getUuid();
mInstanceId = in.readInt();
mServiceType = in.readInt();
}