Merge remote-tracking branch 'origin/dev' into feat/VC-4

This commit is contained in:
Drew Tingen
2019-01-22 09:13:06 -08:00

View File

@@ -20,7 +20,7 @@ namespace ICD.Common.Utils.Timers
private readonly Timer m_Timer;
private int m_RepeatPeriod;
#endif
private readonly Action m_Callback;
private Action m_Callback;
/// <summary>
/// Returns true if this instance has been disposed.
@@ -88,6 +88,8 @@ namespace ICD.Common.Utils.Timers
Stop();
m_Timer.Dispose();
m_Callback = null;
IsDisposed = true;
}