about summary refs log tree commit diff
path: root/src/libstd/str.rs
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2014-05-23 09:11:26 -0700
committerbors <bors@rust-lang.org>2014-05-23 09:11:26 -0700
commitad775be8b48f82d19356942a4fc6fcadc56d3e7e (patch)
tree52c0a4aa453a94a60e266928f9aa5b501a6e3c07 /src/libstd/str.rs
parent9e244d708461d5028066a59e70866f52517e7b85 (diff)
parent33573bc0aaec14c55adbe6be314f761f34f8cdd0 (diff)
downloadrust-ad775be8b48f82d19356942a4fc6fcadc56d3e7e.tar.gz
rust-ad775be8b48f82d19356942a4fc6fcadc56d3e7e.zip
auto merge of #14360 : alexcrichton/rust/remove-deprecated, r=kballard
These have all been deprecated for awhile now, so it's likely time to start removing them.
Diffstat (limited to 'src/libstd/str.rs')
-rw-r--r--src/libstd/str.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstd/str.rs b/src/libstd/str.rs
index 4ba711c4611..0eced707944 100644
--- a/src/libstd/str.rs
+++ b/src/libstd/str.rs
@@ -82,8 +82,8 @@ use slice::{ImmutableVector, MutableVector, CloneableVector};
 use strbuf::StrBuf;
 use vec::Vec;
 
-pub use core::str::{from_utf8, CharEq, Chars, CharOffsets, RevChars};
-pub use core::str::{RevCharOffsets, Bytes, RevBytes, CharSplits, RevCharSplits};
+pub use core::str::{from_utf8, CharEq, Chars, CharOffsets};
+pub use core::str::{Bytes, CharSplits};
 pub use core::str::{CharSplitsN, Words, AnyLines, MatchIndices, StrSplits};
 pub use core::str::{eq_slice, is_utf8, is_utf16, UTF16Items};
 pub use core::str::{UTF16Item, ScalarValue, LoneSurrogate, utf16_items};