Move comment into loop, remove noop

This commit is contained in:
Ben Adams 2015-10-28 22:44:35 +00:00
parent 4bba074d77
commit bdadc8a3da
1 changed files with 1 additions and 2 deletions

View File

@ -198,10 +198,9 @@ namespace Microsoft.AspNet.Server.Kestrel.Http
await ProduceEnd();
// Finish reading the request body in case the app did not.
while (await RequestBody.ReadAsync(_nullBuffer, 0, _nullBuffer.Length) != 0)
{
;
// Finish reading the request body in case the app did not.
}
}