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/librustpkg | |
| parent | 0a9a706b20ee43c601c2c70d62059610d40198fe (diff) | |
| parent | 72557d83124aac4a362b99cbdb31a00f46be4bae (diff) | |
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/librustpkg')
| -rw-r--r-- | src/librustpkg/workcache_support.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustpkg/workcache_support.rs b/src/librustpkg/workcache_support.rs index 3adb33ec2f4..2e4894b854d 100644 --- a/src/librustpkg/workcache_support.rs +++ b/src/librustpkg/workcache_support.rs @@ -9,7 +9,7 @@ // except according to those terms. use std::rt::io; -use std::rt::io::extensions::ReaderUtil; +use std::rt::io::Reader; use std::rt::io::file::FileInfo; use extra::workcache; use sha1::{Digest, Sha1}; |
