diff --git a/crates/lsp/src/lsp.rs b/crates/lsp/src/lsp.rs index b05befedf847215238f5b578028ce6967a956e27..93df14f89dd9b08c849b074d6ddbd00f068de5b0 100644 --- a/crates/lsp/src/lsp.rs +++ b/crates/lsp/src/lsp.rs @@ -768,19 +768,6 @@ mod tests { fake.receive_notification::().await; } - impl LanguageServer { - async fn next_idle_notification(self: &Arc) { - let (tx, rx) = channel::unbounded(); - let _subscription = - self.on_notification::(move |params| { - if params.quiescent { - tx.try_send(()).unwrap(); - } - }); - let _ = rx.recv().await; - } - } - pub enum ServerStatusNotification {} impl notification::Notification for ServerStatusNotification {