Skip to content

Commit

Permalink
fix clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
Gun9niR committed Feb 13, 2024
1 parent 5235886 commit fd73267
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions optd-datafusion-repr/src/properties/column_ref.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,7 @@ impl ColumnRefPropertyBuilder {
}

fn concat_children_properties(children: &[&GroupColumnRefs]) -> GroupColumnRefs {
children
.iter()
.map(Deref::deref)
.cloned()
.flatten()
.collect()
children.iter().flat_map(Deref::deref).cloned().collect()
}
}

Expand Down

0 comments on commit fd73267

Please sign in to comment.