Skip to content

Commit 2492419

Browse files
committed
fixup
1 parent 04ef9a5 commit 2492419

File tree

1 file changed

+2
-2
lines changed
  • turbopack/crates/turbo-tasks-backend/src/backend/operation

1 file changed

+2
-2
lines changed

turbopack/crates/turbo-tasks-backend/src/backend/operation/update_cell.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ use std::mem::take;
22

33
use serde::{Deserialize, Serialize};
44
use smallvec::SmallVec;
5-
use turbo_tasks::{CellId, TaskId, TypedSharedReference, backend::CellContent, registry};
5+
use turbo_tasks::{CellId, TaskId, TypedSharedReference, backend::CellContent};
66

77
#[cfg(feature = "trace_task_dirty")]
88
use crate::backend::operation::invalidate::TaskDirtyCause;
@@ -76,7 +76,7 @@ impl UpdateCellOperation {
7676
#[cfg(feature = "verify_determinism")]
7777
if !is_stateful && !never_equal && content.as_ref() != old_content {
7878
let task_description = ctx.get_task_description(task_id);
79-
let cell_type = registry::get_value_type(cell.type_id).global_name;
79+
let cell_type = turbo_tasks::registry::get_value_type(cell.type_id).global_name;
8080
println!(
8181
"Task {} updated cell #{} (type: {}) while recomputing",
8282
task_description, cell.index, cell_type

0 commit comments

Comments
 (0)