formatting

This commit is contained in:
Folkert 2023-10-07 15:37:44 +02:00
parent 60afb79cc7
commit 94ca207772
No known key found for this signature in database
GPG key ID: 1F17F6FFD112B97C
3 changed files with 5 additions and 12 deletions

View file

@ -331,10 +331,7 @@ impl<'a> Dependencies<'a> {
None | Some(Status::NotStarted) | Some(Status::Pending) => {
// this shorthand is not resolved, add a dependency
{
let entry = self
.waiting_for
.entry(next_step.clone())
.or_default();
let entry = self.waiting_for.entry(next_step.clone()).or_default();
entry.insert(job.clone());
}