mirror of https://github.com/helix-editor/helix
lsp: This doesn't need to be a mutable reference
parent
9b9c3c77f8
commit
be81f40df8
|
@ -274,7 +274,7 @@ impl Transport {
|
||||||
async fn send(
|
async fn send(
|
||||||
transport: Arc<Self>,
|
transport: Arc<Self>,
|
||||||
mut server_stdin: BufWriter<ChildStdin>,
|
mut server_stdin: BufWriter<ChildStdin>,
|
||||||
mut client_tx: UnboundedSender<(usize, jsonrpc::Call)>,
|
client_tx: UnboundedSender<(usize, jsonrpc::Call)>,
|
||||||
mut client_rx: UnboundedReceiver<Payload>,
|
mut client_rx: UnboundedReceiver<Payload>,
|
||||||
initialize_notify: Arc<Notify>,
|
initialize_notify: Arc<Notify>,
|
||||||
) {
|
) {
|
||||||
|
@ -318,7 +318,7 @@ impl Transport {
|
||||||
method: lsp_types::notification::Initialized::METHOD.to_string(),
|
method: lsp_types::notification::Initialized::METHOD.to_string(),
|
||||||
params: jsonrpc::Params::None,
|
params: jsonrpc::Params::None,
|
||||||
}));
|
}));
|
||||||
match transport.process_server_message(&mut client_tx, notification).await {
|
match transport.process_server_message(&client_tx, notification).await {
|
||||||
Ok(_) => {}
|
Ok(_) => {}
|
||||||
Err(err) => {
|
Err(err) => {
|
||||||
error!("err: <- {:?}", err);
|
error!("err: <- {:?}", err);
|
||||||
|
|
Loading…
Reference in New Issue