diff options
author | Rahul Sabnis <rahulsabnis@google.com> | 2019-12-03 11:48:05 -0800 |
---|---|---|
committer | Rahul Sabnis <rahulsabnis@google.com> | 2019-12-04 11:24:57 -0800 |
commit | bc9f48f906fd310c20ffecd603d4d8105d500e16 (patch) | |
tree | 8456a324ff91157450bac5995397046292c57434 /framework/java/android/bluetooth/BluetoothA2dp.java | |
parent | 0a98c5348ba31e36366c8f5abe10a6599a07d2d9 (diff) |
Make BluetoothUuid constants and some functions System Apis
Bug: 143245929
Test: Manual
Change-Id: I5519a379a2bb5d56fe25745d8bdeaa5cf52d9e92
Diffstat (limited to 'framework/java/android/bluetooth/BluetoothA2dp.java')
-rw-r--r-- | framework/java/android/bluetooth/BluetoothA2dp.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/java/android/bluetooth/BluetoothA2dp.java b/framework/java/android/bluetooth/BluetoothA2dp.java index accdd8dc64..8ed61b6c87 100644 --- a/framework/java/android/bluetooth/BluetoothA2dp.java +++ b/framework/java/android/bluetooth/BluetoothA2dp.java @@ -610,7 +610,7 @@ public final class BluetoothA2dp implements BluetoothProfile { if (uuids == null) return false; for (ParcelUuid uuid : uuids) { - if (BluetoothUuid.isAvrcpTarget(uuid)) { + if (uuid.equals(BluetoothUuid.AVRCP_TARGET)) { return true; } } |