Skip to content

Commit

Permalink
chore: clippy (#1871)
Browse files Browse the repository at this point in the history
# Description

Just running `cargo clippy --fix` once to get main green again ...
  • Loading branch information
roeap authored Nov 16, 2023
1 parent 691ed8b commit b5bb4b3
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -522,9 +522,8 @@ impl<'a> ConflictChecker<'a> {
.winning_commit_summary
.removed_files()
.iter()
// TODO remove cloned
.cloned()
.find(|f| read_file_path.contains(&f.path));
.find(|&f| read_file_path.contains(&f.path))
.cloned();
if deleted_read_overlap.is_some()
|| (!self.winning_commit_summary.removed_files().is_empty()
&& self.txn_info.read_whole_table())
Expand Down

0 comments on commit b5bb4b3

Please sign in to comment.