mirror of
https://github.com/pesde-pkg/pesde.git
synced 2025-05-04 10:33:47 +01:00
chore: fix needless borrow
This commit is contained in:
parent
31e0a68c74
commit
f51bd563f1
1 changed files with 1 additions and 1 deletions
|
@ -261,7 +261,7 @@ impl Project {
|
|||
correct_deps.insert(id.clone(), node.clone());
|
||||
node.dependencies
|
||||
.iter()
|
||||
.filter_map(|(id, _alias)| graph.get(&id).map(|node| (id, node)))
|
||||
.filter_map(|(id, _alias)| graph.get(id).map(|node| (id, node)))
|
||||
.for_each(|x| queue.push_back(x));
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue