Remove unused trait imports

This commit is contained in:
Seo Sanghyeon 2016-05-03 21:52:55 +09:00
parent 15d35a04b4
commit f85c603c63
2 changed files with 1 additions and 2 deletions

View File

@ -8,7 +8,7 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.
use rustfmt_diff::{Mismatch, DiffLine};
use std::io::{self, Write, Read};
use std::io::{self, Write};
use config::WriteMode;

View File

@ -33,7 +33,6 @@ use macros::rewrite_macro;
use syntax::{ast, ptr};
use syntax::codemap::{CodeMap, Span, BytePos, mk_sp};
use syntax::parse::classify;
use syntax::visit::Visitor;
impl Rewrite for ast::Expr {
fn rewrite(&self, context: &RewriteContext, width: usize, offset: Indent) -> Option<String> {