diff --git a/crates/bevy_app/src/app.rs b/crates/bevy_app/src/app.rs index a8608171145c0..a6b3c6e2c8b56 100644 --- a/crates/bevy_app/src/app.rs +++ b/crates/bevy_app/src/app.rs @@ -88,9 +88,7 @@ pub struct App { impl Debug for App { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { write!(f, "App {{ sub_apps: ")?; - f.debug_map() - .entries(self.sub_apps.iter().map(|(k, v)| (k, v))) - .finish()?; + f.debug_map().entries(self.sub_apps.iter()).finish()?; write!(f, "}}") } } @@ -176,9 +174,7 @@ impl SubApp { impl Debug for SubApp { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { write!(f, "SubApp {{ app: ")?; - f.debug_map() - .entries(self.app.sub_apps.iter().map(|(k, v)| (k, v))) - .finish()?; + f.debug_map().entries(self.app.sub_apps.iter()).finish()?; write!(f, "}}") } }