Removed unused imports

This fixes #11185.
This commit is contained in:
Per Lundberg 2016-05-15 22:24:26 +03:00
parent 7bede60272
commit 2f7ed1d73e
69 changed files with 33 additions and 98 deletions

View file

@ -5,7 +5,6 @@
use rustc::hir;
use rustc::lint::{LateContext, LintPass, LintArray, LateLintPass, LintContext};
use syntax::ast;
use syntax::attr::AttrMetaMethods;
declare_lint!(PRIVATIZE, Deny,
"Allows to enforce private fields for struct definitions");

View file

@ -4,7 +4,6 @@
use rustc::hir;
use rustc::lint::{LateContext, LintPass, LintArray, LateLintPass, LintContext};
use syntax::attr::AttrMetaMethods;
declare_lint!(TRANSMUTE_TYPE_LINT, Allow,
"Warn and report types being transmuted");