fCraft.ChatTimer.RemoveTimerFromList C# (CSharp) Method

RemoveTimerFromList() static private method

static private RemoveTimerFromList ( [ timer ) : void
timer [
return void
        static void RemoveTimerFromList( [NotNull] ChatTimer timer ) {
            if( timer == null ) throw new ArgumentNullException( "timer" );
            lock( TimerListLock ) {
                Timers.Remove( timer.ID );
            }
        }