From 7fde3614fec4ff8a7806fe5544e3e40ae3a8d114 Mon Sep 17 00:00:00 2001 From: Piotr Osiewicz <24362066+osiewicz@users.noreply.github.com> Date: Tue, 18 Jul 2023 12:19:35 +0200 Subject: [PATCH] Remove leftover comment --- crates/zed/src/languages/php.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/crates/zed/src/languages/php.rs b/crates/zed/src/languages/php.rs index 2607dc410b..6a01d00300 100644 --- a/crates/zed/src/languages/php.rs +++ b/crates/zed/src/languages/php.rs @@ -45,9 +45,6 @@ impl LspAdapter for IntelephenseLspAdapter { &self, _delegate: &dyn LspAdapterDelegate, ) -> Result> { - // At the time of writing the latest vscode-eslint release was released in 2020 and requires - // special custom LSP protocol extensions be handled to fully initialize. Download the latest - // prerelease instead to sidestep this issue Ok(Box::new(IntelephenseVersion( self.node.npm_package_latest_version("intelephense").await?, )) as Box<_>)