File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed
turbopack/crates/turbo-tasks-backend/src/backend Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -1276,9 +1276,7 @@ impl<B: BackingStorage> TurboTasksBackendInner<B> {
12761276 removed_data. extend ( task. extract_if ( CachedDataItemIndex :: CellData , |key, _| {
12771277 matches ! ( key, & CachedDataItemKey :: CellData { cell } if cell_counters
12781278 . get( & cell. type_id)
1279- . map_or( true , |start_index| cell. index >= * start_index) && {
1280- true
1281- } )
1279+ . map_or( true , |start_index| cell. index >= * start_index) )
12821280 } ) ) ;
12831281 if self . should_track_children ( ) {
12841282 old_edges. extend ( task. iter ( CachedDataItemIndex :: Children ) . filter_map (
Original file line number Diff line number Diff line change 1- use core:: panic;
21use std:: {
32 hash:: { BuildHasherDefault , Hash } ,
43 mem:: take,
54 ops:: { Deref , DerefMut } ,
5+ panic,
66 thread:: available_parallelism,
77} ;
88
You can’t perform that action at this time.
0 commit comments