diff options
Diffstat (limited to 'cli/lsp/mod.rs')
-rw-r--r-- | cli/lsp/mod.rs | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/cli/lsp/mod.rs b/cli/lsp/mod.rs index 4723f8b56..c05241ae1 100644 --- a/cli/lsp/mod.rs +++ b/cli/lsp/mod.rs @@ -23,14 +23,10 @@ mod text; mod tsc; mod urls; -pub async fn start(parent_pid: Option<u32>) -> Result<(), AnyError> { +pub async fn start() -> Result<(), AnyError> { let stdin = tokio::io::stdin(); let stdout = tokio::io::stdout(); - if let Some(parent_pid) = parent_pid { - parent_process_checker::start(parent_pid); - } - let (service, messages) = LspService::new(language_server::LanguageServer::new); Server::new(stdin, stdout) |