From e1ae02d794308e95890d025021402321d973ace2 Mon Sep 17 00:00:00 2001 From: Quaternions Date: Wed, 31 Jul 2024 19:07:56 -0700 Subject: [PATCH] type qualifiers are no longer necessary with api changes --- src/run.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/run.rs b/src/run.rs index e4884e5..85a386f 100644 --- a/src/run.rs +++ b/src/run.rs @@ -73,7 +73,7 @@ impl Run{ match &self.state{ RunState::Created=>{ self.state=RunState::Started{ - timer:TimerFixed::::new(time,Time::ZERO), + timer:TimerFixed::new(time,Time::ZERO), }; Ok(()) },