Fix RCS1239
This commit is contained in:
@@ -1120,3 +1120,6 @@ dotnet_diagnostic.RCS1233.severity = warning
|
|||||||
|
|
||||||
# Optimize method call.
|
# Optimize method call.
|
||||||
dotnet_diagnostic.RCS1235.severity = warning
|
dotnet_diagnostic.RCS1235.severity = warning
|
||||||
|
|
||||||
|
# Use 'for' statement instead of 'while' statement.
|
||||||
|
dotnet_diagnostic.RCS1239.severity = warning
|
||||||
|
|||||||
@@ -214,8 +214,7 @@ namespace OpenRA.Mods.Common.FileFormats
|
|||||||
public int ReadBits(int count)
|
public int ReadBits(int count)
|
||||||
{
|
{
|
||||||
var ret = 0;
|
var ret = 0;
|
||||||
var filled = 0;
|
for (var filled = 0; filled < count; filled++)
|
||||||
while (filled < count)
|
|
||||||
{
|
{
|
||||||
if (bitCount == 0)
|
if (bitCount == 0)
|
||||||
{
|
{
|
||||||
@@ -226,7 +225,6 @@ namespace OpenRA.Mods.Common.FileFormats
|
|||||||
ret |= (bitBuffer & 1) << filled;
|
ret |= (bitBuffer & 1) << filled;
|
||||||
bitBuffer >>= 1;
|
bitBuffer >>= 1;
|
||||||
bitCount--;
|
bitCount--;
|
||||||
filled++;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
|
|||||||
Reference in New Issue
Block a user