summaryrefslogtreecommitdiff
path: root/framework/java
diff options
context:
space:
mode:
authorƁukasz Rymanowski <rlukasz@google.com>2022-03-15 13:55:42 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2022-03-15 13:55:42 +0000
commitf0f2871c31bf49bbf5c560d89eeef9e5690931f9 (patch)
treefc32dd7c0070f40fb260bfb6b7216d5fe41193c4 /framework/java
parent18cb805a8df8a8c4bcf13e66d58721d90d192ed2 (diff)
parent376dd00785ca7aa55b3c42b1fd3bab106be11795 (diff)
BluetoothCsipSetCoordinator: Fix typo in return parameter am: 85eeb83e16 am: 376dd00785
Original change: https://android-review.googlesource.com/c/platform/packages/modules/Bluetooth/+/2020204 Change-Id: I994d88f5f198bfcc50627495054b80a054e76d65
Diffstat (limited to 'framework/java')
-rw-r--r--framework/java/android/bluetooth/BluetoothCsipSetCoordinator.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/framework/java/android/bluetooth/BluetoothCsipSetCoordinator.java b/framework/java/android/bluetooth/BluetoothCsipSetCoordinator.java
index 932f56fdd6..84f008b7fc 100644
--- a/framework/java/android/bluetooth/BluetoothCsipSetCoordinator.java
+++ b/framework/java/android/bluetooth/BluetoothCsipSetCoordinator.java
@@ -334,7 +334,8 @@ public final class BluetoothCsipSetCoordinator implements BluetoothProfile, Auto
*/
@SystemApi
@RequiresPermission(Manifest.permission.BLUETOOTH_PRIVILEGED)
- public @NonNull Map getGroupUuidMapByDevice(@Nullable BluetoothDevice device) {
+ public @NonNull Map<Integer, ParcelUuid> getGroupUuidMapByDevice(
+ @Nullable BluetoothDevice device) {
if (VDBG) log("getGroupUuidMapByDevice()");
final IBluetoothCsipSetCoordinator service = getService();
final Map defaultValue = new HashMap<>();