diff options
| author | Richo Healey <richo@psych0tik.net> | 2015-03-28 02:23:20 -0700 |
|---|---|---|
| committer | Richo Healey <richo@psych0tik.net> | 2015-03-28 02:23:20 -0700 |
| commit | cbce6bfbdb140561add2ff258b305e7c7f2ad5c6 (patch) | |
| tree | 1f30cca11906cea62f06810e0e8ad6d5f787633b /src/libstd/sync | |
| parent | 0c9de8140b8abdd2d0a83db93746c58e8bc0da2c (diff) | |
| download | rust-cbce6bfbdb140561add2ff258b305e7c7f2ad5c6.tar.gz rust-cbce6bfbdb140561add2ff258b305e7c7f2ad5c6.zip | |
cleanup: Remove unused braces in use statements
Diffstat (limited to 'src/libstd/sync')
| -rw-r--r-- | src/libstd/sync/future.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/sync/future.rs b/src/libstd/sync/future.rs index 3c7fecb7515..b2afe28fed4 100644 --- a/src/libstd/sync/future.rs +++ b/src/libstd/sync/future.rs @@ -38,7 +38,7 @@ use core::mem::replace; use self::FutureState::*; use sync::mpsc::{Receiver, channel}; -use thunk::{Thunk}; +use thunk::Thunk; use thread; /// A type encapsulating the result of a computation which may not be complete |
