diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2015-03-17 13:33:26 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2015-03-20 20:07:19 -0700 |
| commit | 212e03181e422f569b6426bc08b713a9efc0d0eb (patch) | |
| tree | 4ab0963cf9b9a231d092636782703117c8c3fc6d /src/libstd/io/prelude.rs | |
| parent | 68d69415637186755482d2584e6ba82b67bc1d89 (diff) | |
| download | rust-212e03181e422f569b6426bc08b713a9efc0d0eb.tar.gz rust-212e03181e422f569b6426bc08b713a9efc0d0eb.zip | |
std: Remove old_io/old_path from the prelude
This commit removes the reexports of `old_io` traits as well as `old_path` types and traits from the prelude. This functionality is now all deprecated and needs to be removed to make way for other functionality like `Seek` in the `std::io` module (currently reexported as `NewSeek` in the io prelude). Closes #23377 Closes #23378
Diffstat (limited to 'src/libstd/io/prelude.rs')
| -rw-r--r-- | src/libstd/io/prelude.rs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/libstd/io/prelude.rs b/src/libstd/io/prelude.rs index 6bf0ebd1a59..a2ceacbe1f8 100644 --- a/src/libstd/io/prelude.rs +++ b/src/libstd/io/prelude.rs @@ -23,8 +23,5 @@ #![stable(feature = "rust1", since = "1.0.0")] -pub use super::{Read, Write, BufRead}; +pub use super::{Read, Write, BufRead, Seek}; pub use fs::PathExt; - -// FIXME: pub use as `Seek` when the name isn't in the actual prelude any more -pub use super::Seek as NewSeek; |
