Hpdi.Vss2Git.ChangesetBuilder.HasSameComment C# (CSharp) Method

HasSameComment() private method

private HasSameComment ( Revision rev1, Revision rev2 ) : bool
rev1 Revision
rev2 Revision
return bool
        private bool HasSameComment(Revision rev1, Revision rev2)
        {
            return !string.IsNullOrEmpty(rev1.Comment) && rev1.Comment == rev2.Comment;
        }