diff --git a/src/com/android/settings/bluetooth/BluetoothDeviceUpdater.java b/src/com/android/settings/bluetooth/BluetoothDeviceUpdater.java index dbe2c1b336a..63763472a81 100644 --- a/src/com/android/settings/bluetooth/BluetoothDeviceUpdater.java +++ b/src/com/android/settings/bluetooth/BluetoothDeviceUpdater.java @@ -185,14 +185,6 @@ public abstract class BluetoothDeviceUpdater implements BluetoothCallback { @Override public void onActiveDeviceChanged(CachedBluetoothDevice activeDevice, int bluetoothProfile) { - Collection cachedDevices = - mLocalManager.getCachedDeviceManager().getCachedDevicesCopy(); - // TODO: The state update of the Cached Bluetooth Devices should be - // moved to the device manager: b/72316092 - for (CachedBluetoothDevice cachedBluetoothDevice : cachedDevices) { - boolean isActive = Objects.equals(cachedBluetoothDevice, activeDevice); - cachedBluetoothDevice.setActiveDevice(isActive, bluetoothProfile); - } } /**