AK.F1.Timing.Model.Session.MessageModel.AddCommentary C# (CSharp) Method

AddCommentary() private method

private AddCommentary ( string commentary ) : void
commentary string
return void
        private void AddCommentary(string commentary)
        {
            if(_commentary == null)
            {
                _commentary = new StringBuilder();
            }
            _commentary.Append(commentary);
            // TODO is this correct?
            if(commentary.EndsWith("."))
            {
                _commentary.AppendLine().AppendLine();
            }
            OnCommentaryChanged();
        }