Skip to content

Commit

Permalink
Address clippy lints.
Browse files Browse the repository at this point in the history
  • Loading branch information
azriel91 committed Oct 19, 2024
1 parent b216a82 commit f9d48e8
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions crate/rt_model/src/flow.rs
Original file line number Diff line number Diff line change
Expand Up @@ -172,8 +172,7 @@ impl<E> Flow<E> {
item_interaction_push
.location_to()
.iter()
.last()
.into_iter(),
.last(),
)
.for_each(|item_location| {
item_location_to_item_id_sets_insert(
Expand All @@ -191,8 +190,7 @@ impl<E> Flow<E> {
item_interaction_pull
.location_server()
.iter()
.last()
.into_iter(),
.last(),
)
.for_each(|item_location| {
item_location_to_item_id_sets_insert(
Expand Down Expand Up @@ -368,8 +366,7 @@ impl<E> Flow<E> {
item_interaction_push
.location_to()
.iter()
.last()
.into_iter(),
.last(),
)
.for_each(|item_location| {
item_location_to_item_id_sets_insert(
Expand All @@ -387,8 +384,7 @@ impl<E> Flow<E> {
item_interaction_pull
.location_server()
.iter()
.last()
.into_iter(),
.last(),
)
.for_each(|item_location| {
item_location_to_item_id_sets_insert(
Expand Down

0 comments on commit f9d48e8

Please sign in to comment.