about summary refs log tree commit diff
path: root/src/librustc_borrowck/borrowck
diff options
context:
space:
mode:
authorRicho Healey <richo@psych0tik.net>2015-03-28 02:23:20 -0700
committerRicho Healey <richo@psych0tik.net>2015-03-28 02:23:20 -0700
commitcbce6bfbdb140561add2ff258b305e7c7f2ad5c6 (patch)
tree1f30cca11906cea62f06810e0e8ad6d5f787633b /src/librustc_borrowck/borrowck
parent0c9de8140b8abdd2d0a83db93746c58e8bc0da2c (diff)
downloadrust-cbce6bfbdb140561add2ff258b305e7c7f2ad5c6.tar.gz
rust-cbce6bfbdb140561add2ff258b305e7c7f2ad5c6.zip
cleanup: Remove unused braces in use statements
Diffstat (limited to 'src/librustc_borrowck/borrowck')
-rw-r--r--src/librustc_borrowck/borrowck/fragments.rs4
-rw-r--r--src/librustc_borrowck/borrowck/gather_loans/mod.rs2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/librustc_borrowck/borrowck/fragments.rs b/src/librustc_borrowck/borrowck/fragments.rs
index f3abcb4376c..a13d1d1112a 100644
--- a/src/librustc_borrowck/borrowck/fragments.rs
+++ b/src/librustc_borrowck/borrowck/fragments.rs
@@ -15,10 +15,10 @@
 use self::Fragment::*;
 
 use borrowck::InteriorKind::{InteriorField, InteriorElement};
-use borrowck::{LoanPath};
+use borrowck::LoanPath;
 use borrowck::LoanPathKind::{LpVar, LpUpvar, LpDowncast, LpExtend};
 use borrowck::LoanPathElem::{LpDeref, LpInterior};
-use borrowck::move_data::{InvalidMovePathIndex};
+use borrowck::move_data::InvalidMovePathIndex;
 use borrowck::move_data::{MoveData, MovePathIndex};
 use rustc::middle::ty;
 use rustc::middle::mem_categorization as mc;
diff --git a/src/librustc_borrowck/borrowck/gather_loans/mod.rs b/src/librustc_borrowck/borrowck/gather_loans/mod.rs
index 7d77eb23b6e..bbdec402bdc 100644
--- a/src/librustc_borrowck/borrowck/gather_loans/mod.rs
+++ b/src/librustc_borrowck/borrowck/gather_loans/mod.rs
@@ -22,7 +22,7 @@ use rustc::middle::expr_use_visitor as euv;
 use rustc::middle::mem_categorization as mc;
 use rustc::middle::region;
 use rustc::middle::ty;
-use rustc::util::ppaux::{Repr};
+use rustc::util::ppaux::Repr;
 use syntax::ast;
 use syntax::codemap::Span;
 use syntax::visit;