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

Commit e350b065 authored by Sonny Sasaka's avatar Sonny Sasaka
Browse files

Floss: Fix warnings in todo functions

Bug: 245045365
Tag: #floss
Test: Build floss on Linux

Change-Id: Idb219dccaaeb71fad92639fd3a87a3c542d7b55d
parent df7ffcdc
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -736,17 +736,17 @@ impl IBluetoothSocketManagerCallbacks for BtSocketManagerCallback {

    fn on_handle_incoming_connection(
        &mut self,
        listener_id: SocketId,
        connection: BluetoothSocket,
        _listener_id: SocketId,
        _connection: BluetoothSocket,
    ) {
        todo!();
    }

    fn on_outgoing_connection_result(
        &mut self,
        connecting_id: SocketId,
        result: BtStatus,
        socket: Option<BluetoothSocket>,
        _connecting_id: SocketId,
        _result: BtStatus,
        _socket: Option<BluetoothSocket>,
    ) {
        todo!();
    }