Rollup merge of #35598 - tshepang:needless-binding, r=steveklabnik

string: remove needless binding
This commit is contained in:
Eduard-Mihai Burtescu 2016-08-14 20:29:50 +03:00 committed by GitHub
commit b975a120e1

View File

@ -1182,8 +1182,7 @@ impl String {
reason = "recent addition",
issue = "35553")]
pub fn insert_str(&mut self, idx: usize, string: &str) {
let len = self.len();
assert!(idx <= len);
assert!(idx <= self.len());
assert!(self.is_char_boundary(idx));
unsafe {