Merge "Bluetooth: fix connectGatt overload invocations" into oc-dev
This commit is contained in:
committed by
Android (Google) Code Review
commit
556b10a4e6
@@ -1658,7 +1658,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));
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -1682,7 +1682,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);
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user