Skip to content

Commit 95d9c87

Browse files
committed
clippy
1 parent 6eea03d commit 95d9c87

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

turbopack/crates/turbo-tasks/src/manager.rs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -556,13 +556,11 @@ impl<B: Backend + 'static> TurboTasks<B> {
556556
ltt.close();
557557
ltt.wait().await;
558558

559-
let result = match result {
559+
match result {
560560
Ok(Ok(raw_vc)) => Ok(raw_vc),
561561
Ok(Err(err)) => Err(err.into()),
562562
Err(err) => Err(TurboTasksExecutionError::Panic(Arc::new(err))),
563-
};
564-
565-
result
563+
}
566564
}),
567565
)
568566
.await

0 commit comments

Comments
 (0)