diff --git a/crates/lsp/src/lsp.rs b/crates/lsp/src/lsp.rs index b05befedf8..93df14f89d 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 {