remove unnecessary braces in use statments

This commit is contained in:
gfreezy 2018-12-24 00:40:36 +08:00
parent 346638c809
commit 17b35a7f7d
2 changed files with 2 additions and 4 deletions

View file

@ -29,9 +29,7 @@ use crate::{
symbol_index::SymbolIndex,
};
pub use crate::{
completion::{CompletionItem, CompletionItemKind, InsertText},
};
pub use crate::completion::{CompletionItem, CompletionItemKind, InsertText};
pub use ra_editor::{
FileSymbol, Fold, FoldKind, HighlightedRange, LineIndex, Runnable, RunnableKind, StructureNode,
Severity

View file

@ -1,6 +1,6 @@
use std::sync::Arc;
use relative_path::{RelativePathBuf};
use relative_path::RelativePathBuf;
use test_utils::{extract_offset, parse_fixture, CURSOR_MARKER};
use ra_db::mock::FileMap;