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,
) -> Option<LanguageServerBinary>;
async fn process_diagnostics(&self, d: &mut lsp::PublishDiagnosticsParams) {
dbg!(d);
}
async fn process_diagnostics(&self, _: &mut lsp::PublishDiagnosticsParams) {}
async fn process_completion(&self, d: &mut lsp::CompletionItem) {
dbg!(d);
}
async fn process_completion(&self, _: &mut lsp::CompletionItem) {}
async fn label_for_completion(
&self,
item: &lsp::CompletionItem,
_: &lsp::CompletionItem,
_: &Arc<Language>,
) -> Option<CodeLabel> {
dbg!(item);
None
}
async fn label_for_symbol(
&self,
name: &str,
kind: lsp::SymbolKind,
_: &str,
_: lsp::SymbolKind,
_: &Arc<Language>,
) -> Option<CodeLabel> {
None