diff --git a/src/com/android/settings/bluetooth/BluetoothPairingRequest.java b/src/com/android/settings/bluetooth/BluetoothPairingRequest.java index d5de41a20f9..ed7a1fc9307 100644 --- a/src/com/android/settings/bluetooth/BluetoothPairingRequest.java +++ b/src/com/android/settings/bluetooth/BluetoothPairingRequest.java @@ -87,9 +87,7 @@ public final class BluetoothPairingRequest extends BroadcastReceiver { return; } - if (mBluetoothManager.getCachedDeviceManager().shouldPairByCsip(device, groupId)) { - device.createBond(BluetoothDevice.TRANSPORT_LE); - } + mBluetoothManager.getCachedDeviceManager().pairDeviceByCsip(device, groupId); } } }