about summary refs log tree commit diff
path: root/src/libcore/fmt
diff options
context:
space:
mode:
authorSeo Sanghyeon <sanxiyn@gmail.com>2016-04-12 22:58:55 +0900
committerSeo Sanghyeon <sanxiyn@gmail.com>2016-04-12 22:58:55 +0900
commit01fb27f64814dbd2fef755af4fd6197b1fe74240 (patch)
tree57c5c1aaeb0ab5da32fc1fc9474592c89d95af25 /src/libcore/fmt
parentc0221c8897db309a79990367476177b1230bb264 (diff)
downloadrust-01fb27f64814dbd2fef755af4fd6197b1fe74240.tar.gz
rust-01fb27f64814dbd2fef755af4fd6197b1fe74240.zip
Remove unused trait imports
Diffstat (limited to 'src/libcore/fmt')
-rw-r--r--src/libcore/fmt/builders.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/fmt/builders.rs b/src/libcore/fmt/builders.rs
index d33746389a0..6cac80ab624 100644
--- a/src/libcore/fmt/builders.rs
+++ b/src/libcore/fmt/builders.rs
@@ -9,7 +9,7 @@
 // except according to those terms.
 
 use prelude::v1::*;
-use fmt::{self, Write, FlagV1};
+use fmt::{self, FlagV1};
 
 struct PadAdapter<'a, 'b: 'a> {
     fmt: &'a mut fmt::Formatter<'b>,