Skip to content

Commit 8fbe2a7

Browse files
committed
Remove (yet) unused imports from tests.
1 parent 55e8eb1 commit 8fbe2a7

File tree

1 file changed

+4
-7
lines changed
  • crates/bevy_ecs/src/schedule

1 file changed

+4
-7
lines changed

crates/bevy_ecs/src/schedule/mod.rs

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -237,20 +237,17 @@ impl RunCriteria {
237237
#[cfg(test)]
238238
mod tests {
239239
use crate::{
240-
resource::{Res, ResMut, Resources},
241-
schedule::{ParallelSystemStageExecutor, Schedule, SystemStage},
240+
resource::Resources,
241+
schedule::{Schedule, SystemStage},
242242
system::Query,
243243
Commands, Entity, IntoSystem, World,
244244
};
245245
use bevy_tasks::{ComputeTaskPool, TaskPool};
246-
use fixedbitset::FixedBitSet;
247-
use parking_lot::Mutex;
248-
use std::{collections::HashSet, sync::Arc};
249246

250-
#[derive(Default)]
247+
/*#[derive(Default)]
251248
struct CompletedSystems {
252249
completed_systems: Arc<Mutex<HashSet<&'static str>>>,
253-
}
250+
}*/
254251

255252
#[test]
256253
fn cross_stage_archetype_change_prepare() {

0 commit comments

Comments
 (0)