Remove unnecessary state machine

This commit is contained in:
Ben Adams 2015-12-22 13:44:57 +00:00
parent c55bd19c4d
commit 216fe7843c
1 changed files with 2 additions and 2 deletions

View File

@ -76,9 +76,9 @@ namespace Microsoft.AspNet.Hosting.Internal
_httpContextFactory.Dispose(httpContext); _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 public struct Context