Formatting

This commit is contained in:
Dan Clark
2024-11-02 21:22:14 +00:00
parent 4efde5bdd7
commit 116c83f130
2 changed files with 4 additions and 7 deletions
+2 -6
View File
@@ -22,13 +22,9 @@ public class DispatcherTimer :
private void OnTick(object? sender, EventArgs args) =>
actionDelegate?.Invoke();
public void Start()
{
public void Start() =>
timer.Start();
}
public void Stop()
{
public void Stop() =>
timer.Stop();
}
}