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

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

Merge "Bluetooth: fix parameter name in onConnectionUpdated" am: 327e647a am: 10e8cc5e

am: dd71df9d41

Change-Id: I46d8cf106ed9c2b22e5dfc2b0a38588622c140e8
parents d75a139a 10e8cc5e
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -184,7 +184,7 @@ public abstract class BluetoothGattServerCallback {
    /**
     * Callback indicating the connection parameters were updated.
     *
     * @param gatt The remote device involved
     * @param device The remote device involved
     * @param interval Connection interval used on this connection, 1.25ms unit. Valid range is from
     * 6 (7.5ms) to 3200 (4000ms).
     * @param latency Slave latency for the connection in number of connection events. Valid range
@@ -195,7 +195,7 @@ public abstract class BluetoothGattServerCallback {
     * successfully
     * @hide
     */
    public void onConnectionUpdated(BluetoothDevice gatt, int interval, int latency, int timeout,
    public void onConnectionUpdated(BluetoothDevice device, int interval, int latency, int timeout,
            int status) {
    }