Skip to content

Commit 5c9ebbe

Browse files
committed
Cleanup imports
1 parent 38e8f35 commit 5c9ebbe

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

crates/ra_hir_def/src/find_path.rs

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,17 @@
11
//! An algorithm to find a path to refer to a certain item.
22
3+
use std::sync::Arc;
4+
5+
use hir_expand::name::{known, AsName, Name};
6+
use test_utils::tested_by;
7+
38
use crate::{
49
db::DefDatabase,
510
item_scope::ItemInNs,
611
path::{ModPath, PathKind},
712
visibility::Visibility,
813
CrateId, ModuleDefId, ModuleId,
914
};
10-
use hir_expand::name::{known, AsName, Name};
11-
use std::sync::Arc;
12-
use test_utils::tested_by;
1315

1416
const MAX_PATH_LEN: usize = 15;
1517

0 commit comments

Comments
 (0)