Skip to content

Commit

Permalink
fix clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanielc committed Nov 13, 2024
1 parent c26a224 commit 22a3c46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pipeline/src/aggregator/ceramic_patch.rs
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ impl PartitionEvaluator for CeramicPatchEvaluator {
// So we need to copy the data to a new location before we can copy it back
// into the new_states.
#[allow(clippy::unnecessary_to_owned)]
new_states.append_value(&previous_state.to_owned());
new_states.append_value(previous_state.to_owned());
} else {
new_states.append_value(CeramicPatchEvaluator::apply_patch(
patches.value(i),
Expand Down

0 comments on commit 22a3c46

Please sign in to comment.