File tree Expand file tree Collapse file tree 2 files changed +0
-4
lines changed Expand file tree Collapse file tree 2 files changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -44,7 +44,6 @@ use crate::{
4444#[ turbo_tasks:: value]
4545pub struct MiddlewareEndpoint {
4646 project : ResolvedVc < Project > ,
47- build_id : RcStr ,
4847 asset_context : ResolvedVc < Box < dyn AssetContext > > ,
4948 source : ResolvedVc < Box < dyn Source > > ,
5049 app_dir : Option < ResolvedVc < FileSystemPath > > ,
@@ -56,15 +55,13 @@ impl MiddlewareEndpoint {
5655 #[ turbo_tasks:: function]
5756 pub fn new (
5857 project : ResolvedVc < Project > ,
59- build_id : RcStr ,
6058 asset_context : ResolvedVc < Box < dyn AssetContext > > ,
6159 source : ResolvedVc < Box < dyn Source > > ,
6260 app_dir : Option < ResolvedVc < FileSystemPath > > ,
6361 ecmascript_client_reference_transition_name : Option < ResolvedVc < RcStr > > ,
6462 ) -> Vc < Self > {
6563 Self {
6664 project,
67- build_id,
6865 asset_context,
6966 source,
7067 app_dir,
Original file line number Diff line number Diff line change @@ -1417,7 +1417,6 @@ impl Project {
14171417
14181418 Ok ( Vc :: upcast ( MiddlewareEndpoint :: new (
14191419 self ,
1420- self . await ?. build_id . clone ( ) ,
14211420 middleware_asset_context,
14221421 source,
14231422 app_dir. as_deref ( ) . copied ( ) ,
You can’t perform that action at this time.
0 commit comments