Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Delete dead keyed_cell module #8761

Merged
merged 1 commit into from
Jul 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
77 changes: 0 additions & 77 deletions crates/turbo-tasks/src/keyed_cell.rs

This file was deleted.

2 changes: 0 additions & 2 deletions crates/turbo-tasks/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ mod id;
mod id_factory;
mod invalidation;
mod join_iter_ext;
mod keyed_cell;
#[doc(hidden)]
pub mod macro_helpers;
mod magic_any;
Expand Down Expand Up @@ -85,7 +84,6 @@ pub use invalidation::{
DynamicEqHash, InvalidationReason, InvalidationReasonKind, InvalidationReasonSet,
};
pub use join_iter_ext::{JoinIterExt, TryFlatJoinIterExt, TryJoinIterExt};
pub use keyed_cell::{global_keyed_cell, keyed_cell};
pub use manager::{
dynamic_call, emit, get_invalidator, mark_finished, mark_stateful, prevent_gc, run_once,
run_once_with_reason, spawn_blocking, spawn_thread, trait_call, turbo_tasks, CurrentCellRef,
Expand Down
3 changes: 1 addition & 2 deletions crates/turbopack-core/src/chunk/chunking.rs
Original file line number Diff line number Diff line change
Expand Up @@ -141,8 +141,7 @@ async fn handle_split_group(
})
}

/// Creates a chunk with the given `chunk_items. `key` should be unique and is
/// used with [keyed_cell] to place the chunk items into a cell.
/// Creates a chunk with the given `chunk_items. `key` should be unique.
#[tracing::instrument(level = Level::TRACE, skip_all, fields(key = display(key)))]
async fn make_chunk(
chunk_items: Vec<ChunkItemWithInfo>,
Expand Down
Loading