Skip to content

Commit

Permalink
ROVER-286 Fixing Clippies
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanrainer committed Jan 21, 2025
1 parent 9b2d53f commit 007cb43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/composition/watchers/watcher/supergraph_config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ impl SupergraphConfigDiff {
let changed = old
.clone()
.into_iter()
.filter(|(old_name, _)| !removed.contains(&old_name))
.filter(|(old_name, _)| !removed.contains(old_name))
.filter_map(|(old_name, old_subgraph)| {
new_subgraphs.get(&old_name).and_then(|new_subgraph| {
let new_subgraph = new_subgraph.clone();
Expand Down

0 comments on commit 007cb43

Please sign in to comment.