fcsonline / drill

Drill is an HTTP load testing application written in Rust
GNU General Public License v3.0
2.09k stars 111 forks source link

fix: Remove unnecessary `into_iter()` after a `split()` #179

Closed hypr2771 closed 1 year ago

hypr2771 commented 1 year ago

Why

cargo clippy reveals an unnecessary call to into_iter() on a Split.

What

We removed unnecessary call to into_iter().

fcsonline commented 1 year ago

Thank you!