string: remove needless binding

This commit is contained in:
Tshepang Lekhonkhobe 2016-08-11 20:44:49 +02:00
parent 0ef24eed2f
commit 071410ba57

View File

@ -1182,8 +1182,7 @@ impl String {
reason = "recent addition",
issue = "0")]
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 {