Remove unnecessary value assignment (IDE0059)
This commit is contained in:
committed by
Gustas
parent
757c4d84c7
commit
6bd631618c
@@ -118,8 +118,7 @@ namespace OpenRA.Mods.Common.UtilityCommands
|
||||
{
|
||||
var iniFormat = basicSection.GetValue("NewINIFormat", "0");
|
||||
|
||||
var iniFormatVersion = 0;
|
||||
Exts.TryParseIntegerInvariant(iniFormat, out iniFormatVersion);
|
||||
Exts.TryParseIntegerInvariant(iniFormat, out var iniFormatVersion);
|
||||
|
||||
return iniFormatVersion;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user