Cleanup imports
This commit is contained in:
parent
38e8f35855
commit
5c9ebbeaa4
1 changed files with 5 additions and 3 deletions
|
@ -1,5 +1,10 @@
|
|||
//! An algorithm to find a path to refer to a certain item.
|
||||
|
||||
use std::sync::Arc;
|
||||
|
||||
use hir_expand::name::{known, AsName, Name};
|
||||
use test_utils::tested_by;
|
||||
|
||||
use crate::{
|
||||
db::DefDatabase,
|
||||
item_scope::ItemInNs,
|
||||
|
@ -7,9 +12,6 @@ use crate::{
|
|||
visibility::Visibility,
|
||||
CrateId, ModuleDefId, ModuleId,
|
||||
};
|
||||
use hir_expand::name::{known, AsName, Name};
|
||||
use std::sync::Arc;
|
||||
use test_utils::tested_by;
|
||||
|
||||
const MAX_PATH_LEN: usize = 15;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue