Loading framework/java/android/bluetooth/BluetoothDevice.java +2 −2 Original line number Diff line number Diff line Loading @@ -1669,7 +1669,7 @@ public final class BluetoothDevice implements Parcelable { */ public BluetoothGatt connectGatt(Context context, boolean autoConnect, BluetoothGattCallback callback, int transport) { return (connectGatt(context, autoConnect,callback, TRANSPORT_AUTO, PHY_LE_1M_MASK)); return (connectGatt(context, autoConnect,callback, transport, PHY_LE_1M_MASK)); } /** Loading @@ -1693,7 +1693,7 @@ public final class BluetoothDevice implements Parcelable { */ public BluetoothGatt connectGatt(Context context, boolean autoConnect, BluetoothGattCallback callback, int transport, int phy) { return connectGatt(context, autoConnect,callback, TRANSPORT_AUTO, PHY_LE_1M_MASK, null); return connectGatt(context, autoConnect,callback, transport, phy, null); } /** Loading Loading
framework/java/android/bluetooth/BluetoothDevice.java +2 −2 Original line number Diff line number Diff line Loading @@ -1669,7 +1669,7 @@ public final class BluetoothDevice implements Parcelable { */ public BluetoothGatt connectGatt(Context context, boolean autoConnect, BluetoothGattCallback callback, int transport) { return (connectGatt(context, autoConnect,callback, TRANSPORT_AUTO, PHY_LE_1M_MASK)); return (connectGatt(context, autoConnect,callback, transport, PHY_LE_1M_MASK)); } /** Loading @@ -1693,7 +1693,7 @@ public final class BluetoothDevice implements Parcelable { */ public BluetoothGatt connectGatt(Context context, boolean autoConnect, BluetoothGattCallback callback, int transport, int phy) { return connectGatt(context, autoConnect,callback, TRANSPORT_AUTO, PHY_LE_1M_MASK, null); return connectGatt(context, autoConnect,callback, transport, phy, null); } /** Loading