diff options
| author | Richo Healey <richo@psych0tik.net> | 2014-05-24 21:59:56 -0700 |
|---|---|---|
| committer | Richo Healey <richo@psych0tik.net> | 2014-05-26 19:06:13 -0700 |
| commit | c7fe4ffe3d8315dfe98bee6d040b5a0381daab91 (patch) | |
| tree | d005bac35d0a12ce8a17b10f1df692fec845061c /src/libstd | |
| parent | 746d086f9322d24fa7b389dd911e204ca35012ae (diff) | |
| download | rust-c7fe4ffe3d8315dfe98bee6d040b5a0381daab91.tar.gz rust-c7fe4ffe3d8315dfe98bee6d040b5a0381daab91.zip | |
std: Remove String::from_owned_str as it's redundant
[breaking-change]
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/str.rs | 7 | ||||
| -rw-r--r-- | src/libstd/string.rs | 3 |
2 files changed, 5 insertions, 5 deletions
diff --git a/src/libstd/str.rs b/src/libstd/str.rs index d68ed099a4a..b57c329983e 100644 --- a/src/libstd/str.rs +++ b/src/libstd/str.rs @@ -910,10 +910,9 @@ impl OwnedStr for String { } #[inline] - fn append(self, rhs: &str) -> String { - let mut new_str = String::from_owned_str(self); - new_str.push_str(rhs); - new_str + fn append(mut self, rhs: &str) -> String { + self.push_str(rhs); + self } } diff --git a/src/libstd/string.rs b/src/libstd/string.rs index f4d1e2a1858..8897750df65 100644 --- a/src/libstd/string.rs +++ b/src/libstd/string.rs @@ -68,7 +68,8 @@ impl String { } } - /// Creates a new string buffer from the given owned string, taking care not to copy it. + #[allow(missing_doc)] + #[deprecated = "obsoleted by the removal of ~str"] #[inline] pub fn from_owned_str(string: String) -> String { string |
