Skip to content

Commit

Permalink
remove ResolvedVc from trait functions (vercel#73270)
Browse files Browse the repository at this point in the history
Clean up a bad refactor
  • Loading branch information
arlyon authored Nov 27, 2024
1 parent 4055dd0 commit 2efe544
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions turbopack/crates/turbopack-core/src/chunk/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,8 @@ pub struct ModuleIds(Vec<Vc<ModuleId>>);
#[turbo_tasks::value_trait]
pub trait ChunkableModule: Module + Asset {
fn as_chunk_item(
self: ResolvedVc<Self>,
chunking_context: ResolvedVc<Box<dyn ChunkingContext>>,
self: Vc<Self>,
chunking_context: Vc<Box<dyn ChunkingContext>>,
) -> Vc<Box<dyn ChunkItem>>;
}

Expand Down

0 comments on commit 2efe544

Please sign in to comment.