bevy/crates/bevy_sprite
TimJentzsch 694c980c82 Fix clippy::iter_with_drain (#6485)
# Objective

Fixes #6483.

- Fix the [`clippy::iter_with_drain`](https://rust-lang.github.io/rust-clippy/master/index.html#iter_with_drain) warnings
- From the docs: "`.into_iter()` is simpler with better performance"

## Solution

- Replace `.drain(..)` for `Vec` with `.into_iter()`
2022-11-06 01:42:15 +00:00
..
src Fix clippy::iter_with_drain (#6485) 2022-11-06 01:42:15 +00:00
Cargo.toml remove copyless (#6100) 2022-09-27 18:11:40 +00:00