aboutsummaryrefslogtreecommitdiff
path: root/crates/ide_db/src/search.rs
diff options
context:
space:
mode:
authorLukas Wirth <[email protected]>2021-03-27 20:51:00 +0000
committerLukas Wirth <[email protected]>2021-03-27 20:51:00 +0000
commit1ef55002c2db4ca68df31306290b019c7fbfb4fb (patch)
tree222f7661669f96792b5b987aba0b26ce07efcf4a /crates/ide_db/src/search.rs
parent77a447dcda82a9f0eb6e1f04bd4b1dd53a226c65 (diff)
Cleanup ide_db imports
Diffstat (limited to 'crates/ide_db/src/search.rs')
-rw-r--r--crates/ide_db/src/search.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/crates/ide_db/src/search.rs b/crates/ide_db/src/search.rs
index 3634b2b26..b55e3851e 100644
--- a/crates/ide_db/src/search.rs
+++ b/crates/ide_db/src/search.rs
@@ -12,9 +12,8 @@ use once_cell::unsync::Lazy;
12use rustc_hash::FxHashMap; 12use rustc_hash::FxHashMap;
13use syntax::{ast, match_ast, AstNode, TextRange, TextSize}; 13use syntax::{ast, match_ast, AstNode, TextRange, TextSize};
14 14
15use crate::defs::NameClass;
16use crate::{ 15use crate::{
17 defs::{Definition, NameRefClass}, 16 defs::{Definition, NameClass, NameRefClass},
18 RootDatabase, 17 RootDatabase,
19}; 18};
20 19