Skip to content

Commit

Permalink
minor: remove unused mut
Browse files Browse the repository at this point in the history
  • Loading branch information
matklad committed Sep 22, 2022
1 parent 8dea819 commit 73c79c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cargo/core/resolver/dep_cache.rs
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ impl<'a> RegistryQueryer<'a> {
self.registry_cache.insert(dep.clone(), Poll::Pending);
return Poll::Pending;
}
for summary in ret.iter_mut() {
for summary in ret.iter() {
let mut potential_matches = self
.replacements
.iter()
Expand Down

0 comments on commit 73c79c7

Please sign in to comment.