Remove redundant let

This commit is contained in:
Robert Dodd 2024-01-03 08:55:52 +11:00
parent b1239dbd2a
commit fa114c23d5

View file

@ -58,7 +58,7 @@ pub fn tick_dioxus_ui(world: &mut World) {
fn run_deferred_systems(world: &mut World) { fn run_deferred_systems(world: &mut World) {
for mut system in mem::take(&mut *world.resource_mut::<DeferredSystemRunQueue>().run_queue) { for mut system in mem::take(&mut *world.resource_mut::<DeferredSystemRunQueue>().run_queue) {
system.initialize(world); system.initialize(world);
let _ = system.run((), world); system.run((), world);
} }
} }