JelloScrum.Model.Entities.Task.RemoveComment C# (CSharp) Method

RemoveComment() public method

Remove a comment
public RemoveComment ( TaskComment comment ) : void
comment TaskComment The comment.
return void
        public virtual void RemoveComment(TaskComment comment)
        {
            if (comments.Contains(comment))
            {
                comments.Remove(comment);
            }
        }