Skip to content

Commit

Permalink
Cargo clippy pass
Browse files Browse the repository at this point in the history
  • Loading branch information
sydhds committed Jul 4, 2023
1 parent 20b5430 commit 2816a8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion massa-versioning/src/versioning.rs
Original file line number Diff line number Diff line change
Expand Up @@ -781,7 +781,7 @@ impl MipStoreRaw {
})
})
.collect();
let mut names: HashSet<String> = self.store.iter().map(|(mi, _)| mi.name.clone()).collect();
let mut names: HashSet<String> = self.store.keys().map(|mi| mi.name.clone()).collect();
let mut to_update: BTreeMap<MipInfo, MipState> = Default::default();
let mut to_add: BTreeMap<MipInfo, MipState> = Default::default();
let mut has_error: Option<UpdateWithError> = None;
Expand Down

0 comments on commit 2816a8d

Please sign in to comment.