Merge "Re-add return statements accidentally removed in aosp/2461534"
diff --git a/src/com/android/server/telecom/bluetooth/BluetoothDeviceManager.java b/src/com/android/server/telecom/bluetooth/BluetoothDeviceManager.java
index cbeb5fc..039b4df 100644
--- a/src/com/android/server/telecom/bluetooth/BluetoothDeviceManager.java
+++ b/src/com/android/server/telecom/bluetooth/BluetoothDeviceManager.java
@@ -660,6 +660,7 @@
if (!switchingBtDevices) {
return setLeAudioCommunicationDevice();
}
+ return true;
}
return false;
} else if (callProfile == BluetoothProfile.HEARING_AID) {
@@ -670,6 +671,7 @@
if (!switchingBtDevices) {
return setHearingAidCommunicationDevice();
}
+ return true;
}
return false;
} else if (callProfile == BluetoothProfile.HEADSET) {