OpenHome.Git.Tag.CorruptIf C# (CSharp) Method

CorruptIf() private method

private CorruptIf ( bool aCondition ) : void
aCondition bool
return void
        private void CorruptIf(bool aCondition)
        {
            if (aCondition)
            {
                throw (new GitException("Tag " + iId + " corrupt"));
            }
        }