Skip to content

Commit 00ba67a

Browse files
committed
Remove import of lazy_static
1 parent c1745cd commit 00ba67a

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

clippy_lints/src/lib.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,6 @@ use rustc_plugin;
2424
#[macro_use]
2525
extern crate matches as matches_macro;
2626

27-
#[macro_use]
28-
extern crate lazy_static;
29-
3027
#[macro_use]
3128
extern crate if_chain;
3229

clippy_lints/src/utils/conf.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,13 @@
22
33
#![deny(missing_docs_in_private_items)]
44

5+
use lazy_static::lazy_static;
56
use std::{env, fmt, fs, io, path};
67
use std::io::Read;
78
use syntax::{ast, codemap};
89
use toml;
910
use std::sync::Mutex;
11+
1012
/// Get the configuration file from arguments.
1113
pub fn file_from_args(
1214
args: &[codemap::Spanned<ast::NestedMetaItemKind>],

0 commit comments

Comments
 (0)