diff --git a/core/java/android/bluetooth/BluetoothHearingAid.java b/core/java/android/bluetooth/BluetoothHearingAid.java index 38498bc147b29..5891072ec7c14 100644 --- a/core/java/android/bluetooth/BluetoothHearingAid.java +++ b/core/java/android/bluetooth/BluetoothHearingAid.java @@ -496,17 +496,20 @@ public final class BluetoothHearingAid implements BluetoothProfile { } /** - * Get the CustomerId of the device. + * Get the HiSyncId (unique hearing aid device identifier) of the device. + * + * HiSyncId documentation + * can be found here * * @param device Bluetooth device - * @return the CustomerId of the device + * @return the HiSyncId of the device * @hide */ @SystemApi @RequiresPermission(Manifest.permission.BLUETOOTH) public long getHiSyncId(@Nullable BluetoothDevice device) { if (VDBG) { - log("getCustomerId(" + device + ")"); + log("getHiSyncId(" + device + ")"); } final IBluetoothHearingAid service = getService(); try {