From 9b2847885de551cb83feaa31356b85e4e53dcda5 Mon Sep 17 00:00:00 2001 From: Aleksey Kladov Date: Tue, 7 Jul 2020 11:44:16 +0200 Subject: cleanup --- crates/ra_ide/src/completion/complete_unqualified_path.rs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'crates') diff --git a/crates/ra_ide/src/completion/complete_unqualified_path.rs b/crates/ra_ide/src/completion/complete_unqualified_path.rs index 0d1e9f8ea..790179e5b 100644 --- a/crates/ra_ide/src/completion/complete_unqualified_path.rs +++ b/crates/ra_ide/src/completion/complete_unqualified_path.rs @@ -1,11 +1,10 @@ //! Completion of names from the current scope, e.g. locals and imported items. -use hir::ScopeDef; +use hir::{Adt, ModuleDef, ScopeDef, Type}; +use ra_syntax::AstNode; use test_utils::mark; use crate::completion::{CompletionContext, Completions}; -use hir::{Adt, ModuleDef, Type}; -use ra_syntax::AstNode; pub(super) fn complete_unqualified_path(acc: &mut Completions, ctx: &CompletionContext) { if !(ctx.is_trivial_path || ctx.is_pat_binding_or_const) { -- cgit v1.2.3