Remove leftover comment

This commit is contained in:
Piotr Osiewicz 2023-07-18 12:19:35 +02:00
parent dd6b674e7e
commit 7fde3614fe

View file

@ -45,9 +45,6 @@ impl LspAdapter for IntelephenseLspAdapter {
&self, &self,
_delegate: &dyn LspAdapterDelegate, _delegate: &dyn LspAdapterDelegate,
) -> Result<Box<dyn 'static + Send + Any>> { ) -> Result<Box<dyn 'static + Send + Any>> {
// 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( Ok(Box::new(IntelephenseVersion(
self.node.npm_package_latest_version("intelephense").await?, self.node.npm_package_latest_version("intelephense").await?,
)) as Box<_>) )) as Box<_>)