aboutsummaryrefslogtreecommitdiff
path: root/helix-lsp/src/transport.rs
diff options
context:
space:
mode:
Diffstat (limited to 'helix-lsp/src/transport.rs')
-rw-r--r--helix-lsp/src/transport.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/helix-lsp/src/transport.rs b/helix-lsp/src/transport.rs
index 38c3bb57..b30a8a6e 100644
--- a/helix-lsp/src/transport.rs
+++ b/helix-lsp/src/transport.rs
@@ -138,11 +138,10 @@ impl Transport {
// println!("<- {} {:?}", method, notification);
self.incoming.send(notification).await?;
}
- Message::Call(call) => {
+ Message::Call(_call) => {
// println!("<- {:?}", call);
// dispatch
}
- _ => unreachable!(),
};
Ok(())
}