Remove a dbg!

This commit is contained in:
Florian Diebold 2019-09-14 11:05:42 +02:00
parent 04789ef37b
commit 613863abb9

View File

@ -9,7 +9,7 @@ pub(super) fn complete_path(acc: &mut Completions, ctx: &CompletionContext) {
Some(path) => path.clone(), Some(path) => path.clone(),
_ => return, _ => return,
}; };
let def = match dbg!(ctx.analyzer.resolve_hir_path(ctx.db, &path)) { let def = match ctx.analyzer.resolve_hir_path(ctx.db, &path) {
Some(PathResolution::Def(def)) => def, Some(PathResolution::Def(def)) => def,
_ => return, _ => return,
}; };