refactor: Remove double semicolon

This commit is contained in:
Paul Pacheco 2020-01-01 15:33:35 -06:00
parent 796277cb95
commit a438216458

View File

@ -134,7 +134,7 @@ void EnlargeBufferIfRequired(int count)
if (requiredSize > newSize) if (requiredSize > newSize)
{ {
// compute the power of two larger than requiredSize. so 40000 => 65536 // compute the power of two larger than requiredSize. so 40000 => 65536
newSize = (int)Math.Pow(2, Math.Ceiling(Math.Log(requiredSize) / Math.Log(2))); ; newSize = (int)Math.Pow(2, Math.Ceiling(Math.Log(requiredSize) / Math.Log(2)));
} }
byte[] newBuffer = new byte[newSize]; byte[] newBuffer = new byte[newSize];