Remove unnecessary state machine
This commit is contained in:
parent
c55bd19c4d
commit
216fe7843c
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue