diff options
Diffstat (limited to 'crates/ra_ide_db/src/imports_locator.rs')
-rw-r--r-- | crates/ra_ide_db/src/imports_locator.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/ra_ide_db/src/imports_locator.rs b/crates/ra_ide_db/src/imports_locator.rs index d77fc53f3..401b8ac0b 100644 --- a/crates/ra_ide_db/src/imports_locator.rs +++ b/crates/ra_ide_db/src/imports_locator.rs | |||
@@ -12,11 +12,11 @@ use crate::{ | |||
12 | RootDatabase, | 12 | RootDatabase, |
13 | }; | 13 | }; |
14 | 14 | ||
15 | pub struct ImportsLocatorIde<'a> { | 15 | pub struct ImportsLocator<'a> { |
16 | source_binder: SourceBinder<'a, RootDatabase>, | 16 | source_binder: SourceBinder<'a, RootDatabase>, |
17 | } | 17 | } |
18 | 18 | ||
19 | impl<'a> ImportsLocatorIde<'a> { | 19 | impl<'a> ImportsLocator<'a> { |
20 | pub fn new(db: &'a RootDatabase) -> Self { | 20 | pub fn new(db: &'a RootDatabase) -> Self { |
21 | Self { source_binder: SourceBinder::new(db) } | 21 | Self { source_binder: SourceBinder::new(db) } |
22 | } | 22 | } |