diff options
| author | bors <bors@rust-lang.org> | 2013-10-28 10:56:34 -0700 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2013-10-28 10:56:34 -0700 |
| commit | e6102fc2fa72501ebf10ad8853b2a31332e6bdfd (patch) | |
| tree | 4f553f9e135627ec1ef98dbc305888f0950d5e68 /src/libstd/run.rs | |
| parent | 0a9a706b20ee43c601c2c70d62059610d40198fe (diff) | |
| parent | 72557d83124aac4a362b99cbdb31a00f46be4bae (diff) | |
| download | rust-e6102fc2fa72501ebf10ad8853b2a31332e6bdfd.tar.gz rust-e6102fc2fa72501ebf10ad8853b2a31332e6bdfd.zip | |
auto merge of #10079 : alexcrichton/rust/no-reader-util, r=brson
These methods are all excellent candidates for default methods, so there's no need to require extra imports of various traits. Additionally, this was able to remove all the weird underscores after the method names. Yay!
Diffstat (limited to 'src/libstd/run.rs')
| -rw-r--r-- | src/libstd/run.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/run.rs b/src/libstd/run.rs index 6e7d681d40a..973e866e335 100644 --- a/src/libstd/run.rs +++ b/src/libstd/run.rs @@ -19,7 +19,7 @@ use libc; use prelude::*; use rt::io::process; use rt::io; -use rt::io::extensions::ReaderUtil; +use rt::io::Reader; use task; /** |
