diff -r 64b0a5cead86 -r 44b49f255e31 rust/hwphysics/src/physics.rs --- a/rust/hwphysics/src/physics.rs Tue Jan 25 23:46:11 2022 +0300 +++ b/rust/hwphysics/src/physics.rs Thu Jan 27 03:51:13 2022 +0300 @@ -67,11 +67,7 @@ } } - pub fn process( - &mut self, - data: &mut GearDataManager, - time_step: Millis, - ) -> &PositionUpdates { + pub fn process(&mut self, data: &mut GearDataManager, time_step: Millis) -> &PositionUpdates { if time_step == Millis::new(1) { self.process_impl::(data, time_step) } else {