diff options
Diffstat (limited to 'components/plugins/lints/privatize.rs')
-rw-r--r-- | components/plugins/lints/privatize.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/plugins/lints/privatize.rs b/components/plugins/lints/privatize.rs index 430edf50d30..7ef92eeaf30 100644 --- a/components/plugins/lints/privatize.rs +++ b/components/plugins/lints/privatize.rs @@ -2,10 +2,10 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ -use syntax::{ast, ast_util}; +use rustc::lint::{Context, LintPass, LintArray}; use syntax::ast::Public; use syntax::attr::AttrMetaMethods; -use rustc::lint::{Context, LintPass, LintArray}; +use syntax::{ast, ast_util}; declare_lint!(PRIVATIZE, Deny, "Allows to enforce private fields for struct definitions"); |