Skip to content

Commit 211171f

Browse files
Merge #1846
1846: Remove a dbg! r=flodiebold a=flodiebold Co-authored-by: Florian Diebold <[email protected]>
2 parents 04789ef + 613863a commit 211171f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/ra_ide_api/src/completion/complete_path.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ pub(super) fn complete_path(acc: &mut Completions, ctx: &CompletionContext) {
99
Some(path) => path.clone(),
1010
_ => return,
1111
};
12-
let def = match dbg!(ctx.analyzer.resolve_hir_path(ctx.db, &path)) {
12+
let def = match ctx.analyzer.resolve_hir_path(ctx.db, &path) {
1313
Some(PathResolution::Def(def)) => def,
1414
_ => return,
1515
};

0 commit comments

Comments
 (0)