mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
Fix unused import warning
This commit is contained in:
parent
5d96558f9f
commit
6960c506ef
1 changed files with 1 additions and 1 deletions
|
@ -4,7 +4,7 @@ use rustc::lint::*;
|
|||
use rustc::ty::TypeVariants;
|
||||
use syntax::ast::LitKind;
|
||||
use utils::paths;
|
||||
use utils::{is_expn_of, match_def_path, match_path, match_type, resolve_node, span_lint, walk_ptrs_ty};
|
||||
use utils::{is_expn_of, match_def_path, match_type, resolve_node, span_lint, walk_ptrs_ty};
|
||||
|
||||
/// **What it does:** Checks for the use of `format!("string literal with no
|
||||
/// argument")` and `format!("{}", foo)` where `foo` is a string.
|
||||
|
|
Loading…
Reference in a new issue