Skip to content

Commit 270342e

Browse files
committed
clippy
1 parent 6b5c493 commit 270342e

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

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

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -727,16 +727,15 @@ impl<B: Backend + 'static> TurboTasks<B> {
727727
} = this.finish_current_task_state();
728728
let cell_counters = CURRENT_TASK_STATE
729729
.with(|ts| ts.write().unwrap().cell_counters.take().unwrap());
730-
let schedule_again = this.backend.task_execution_completed(
730+
this.backend.task_execution_completed(
731731
task_id,
732732
duration,
733733
alloc_info.memory_usage(),
734734
&cell_counters,
735735
stateful,
736736
has_invalidator,
737737
&*this,
738-
);
739-
schedule_again
738+
)
740739
}
741740
.instrument(span)
742741
.await

0 commit comments

Comments
 (0)