Fix static checker dogfooding warning - remove redundant null-check

This commit is contained in:
Yaakov Smith 2016-06-01 11:23:50 +10:00
Родитель e1c657ed44
Коммит dd92cd7041
1 изменённых файлов: 1 добавлений и 4 удалений

Просмотреть файл

@ -141,10 +141,7 @@ namespace Microsoft.Contracts.Foxtrot
methodName.Matches(ContractNodes.EndContractBlockName))
{
string message = string.Format(Resources.Error_ContractNotRewritten_ContractName_MemberName, method.FullName, this.visitedMembers.Peek().FullName);
if (this.handleError != null)
{
this.handleError(new Error(1080, message, binding.SourceContext));
}
this.handleError(new Error(1080, message, binding.SourceContext));
}
}