Skip to content

Commit

Permalink
Delete dead keyed_cell module (#8761)
Browse files Browse the repository at this point in the history
### Description

Looks like this was added with a callsite in #6160 , and the callsite was removed in #6172 .

### Testing Instructions

```
cargo check
```
  • Loading branch information
bgw committed Jul 16, 2024
1 parent a946801 commit 3e33af5
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 81 deletions.
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

0 comments on commit 3e33af5

Please sign in to comment.