mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-11-15 09:27:27 +00:00
do fixup: remove unused imports in complete_dot.rs
This commit is contained in:
parent
858736c477
commit
957de26a1d
1 changed files with 1 additions and 4 deletions
|
@ -1,13 +1,10 @@
|
|||
use hir::{AdtDef, Ty, TypeCtor};
|
||||
|
||||
use crate::completion::completion_item::{Builder, CompletionKind};
|
||||
use crate::completion::completion_item::CompletionKind;
|
||||
use crate::{
|
||||
completion::{completion_context::CompletionContext, completion_item::Completions},
|
||||
CompletionItem,
|
||||
};
|
||||
use ra_syntax::ast::AstNode;
|
||||
use ra_syntax::TextRange;
|
||||
use ra_text_edit::TextEditBuilder;
|
||||
use rustc_hash::FxHashSet;
|
||||
|
||||
/// Complete dot accesses, i.e. fields or methods (and .await syntax).
|
||||
|
|
Loading…
Reference in a new issue