Remove dbg calls

This commit is contained in:
Piotr Osiewicz 2023-07-17 13:08:41 +02:00
parent 8642a1d074
commit dd6b674e7e

View file

@ -262,27 +262,22 @@ pub trait LspAdapter: 'static + Send + Sync {
container_dir: PathBuf, container_dir: PathBuf,
) -> Option<LanguageServerBinary>; ) -> Option<LanguageServerBinary>;
async fn process_diagnostics(&self, d: &mut lsp::PublishDiagnosticsParams) { async fn process_diagnostics(&self, _: &mut lsp::PublishDiagnosticsParams) {}
dbg!(d);
}
async fn process_completion(&self, d: &mut lsp::CompletionItem) { async fn process_completion(&self, _: &mut lsp::CompletionItem) {}
dbg!(d);
}
async fn label_for_completion( async fn label_for_completion(
&self, &self,
item: &lsp::CompletionItem, _: &lsp::CompletionItem,
_: &Arc<Language>, _: &Arc<Language>,
) -> Option<CodeLabel> { ) -> Option<CodeLabel> {
dbg!(item);
None None
} }
async fn label_for_symbol( async fn label_for_symbol(
&self, &self,
name: &str, _: &str,
kind: lsp::SymbolKind, _: lsp::SymbolKind,
_: &Arc<Language>, _: &Arc<Language>,
) -> Option<CodeLabel> { ) -> Option<CodeLabel> {
None None