Remove unnecessary parantheses

This commit is contained in:
Hisham Abdullah Bin Ateya 2015-05-31 03:09:31 +03:00 committed by Doug Bunting
parent d8310239b1
commit 1e3b462210
1 changed files with 3 additions and 3 deletions

View File

@ -105,15 +105,15 @@ namespace Microsoft.Framework.Globalization
{
return "4.6 RC or later";
}
if ((releaseKey >= 379893))
if (releaseKey >= 379893)
{
return "4.5.2 or later";
}
if ((releaseKey >= 378675))
if (releaseKey >= 378675)
{
return "4.5.1 or later";
}
if ((releaseKey >= 378389))
if (releaseKey >= 378389)
{
return "4.5 or later";
}