fix: Fixed a bug where SafeTimer.Trigger would call the callback twice on NetStandard

This commit is contained in:
Chris Cameron
2021-04-12 15:13:38 -04:00
parent f807db480e
commit 25d799fe7d
2 changed files with 5 additions and 4 deletions

View File

@@ -112,7 +112,6 @@ namespace ICD.Common.Utils.Timers
m_Timer.Reset();
#else
m_Timer.Change(0, m_RepeatPeriod);
m_Callback();
#endif
}