diff --git a/src/contact.rs b/src/contact.rs index d811aea7f..3bc43537c 100644 --- a/src/contact.rs +++ b/src/contact.rs @@ -1515,7 +1515,6 @@ fn split_address_book(book: &str) -> Vec<(&str, &str)> { book.lines() .collect::>() .chunks(2) - .into_iter() .filter_map(|chunk| { let name = chunk.first()?; let addr = chunk.get(1)?;