Removed many pointless calls to *iter() and iter_mut()

This commit is contained in:
Joshua Landau
2015-06-10 17:22:20 +01:00
parent d8a9570154
commit ca7418b846
117 changed files with 292 additions and 294 deletions

View File

@@ -344,7 +344,7 @@ fn test_from_iterator() {
assert_eq!(s, c);
let mut d = t.to_string();
d.extend(vec![u].into_iter());
d.extend(vec![u]);
assert_eq!(s, d);
}