Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c0fed83b authored by Jakub Pawlowski's avatar Jakub Pawlowski Committed by android-build-merger
Browse files

Merge "Bluetooth: fix connectGatt overload invocations"

am: 404e9f20

Change-Id: I01699795f733fbf46af10ba25afd8cb3feecc9ea
parents 00c6c3be 404e9f20
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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));
    }

    /**
@@ -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);
    }

    /**