mirror of
https://github.com/chatmail/core.git
synced 2026-04-17 21:46:35 +03:00
Remove unnecessary .into_iter()
This commit is contained in:
@@ -1515,7 +1515,6 @@ fn split_address_book(book: &str) -> Vec<(&str, &str)> {
|
||||
book.lines()
|
||||
.collect::<Vec<&str>>()
|
||||
.chunks(2)
|
||||
.into_iter()
|
||||
.filter_map(|chunk| {
|
||||
let name = chunk.first()?;
|
||||
let addr = chunk.get(1)?;
|
||||
|
||||
Reference in New Issue
Block a user