rust/hwphysics/src/physics.rs
changeset 15850 44b49f255e31
parent 15802 f4b563a9ac5e
--- 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::<true>(data, time_step)
         } else {