Merge pull request #534 from benaadams/patch-2

Remove unnecessary state machine
This commit is contained in:
Chris R 2015-12-22 06:05:04 -08:00
commit 253367de83
1 changed files with 2 additions and 2 deletions

View File

@ -76,9 +76,9 @@ namespace Microsoft.AspNet.Hosting.Internal
_httpContextFactory.Dispose(httpContext);
}
public async Task ProcessRequestAsync(Context context)
public Task ProcessRequestAsync(Context context)
{
await _application(context.HttpContext);
return _application(context.HttpContext);
}
public struct Context