Remove redundant let

This commit is contained in:
Robert Dodd 2024-01-03 08:55:52 +11:00
parent b1239dbd2a
commit fa114c23d5
1 changed files with 1 additions and 1 deletions

View File

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