Skip to content
This repository was archived by the owner on Nov 1, 2018. It is now read-only.

Commit 52e5ccd

Browse files
committed
React to HttpAbstractions namespace changes
- aspnet/HttpAbstractions#549 and aspnet/HttpAbstractions#592 - clean up `using`s
1 parent 7a3da26 commit 52e5ccd

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

src/Microsoft.AspNetCore.IISPlatformHandler/IISPlatformHandlerMiddleware.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
using Microsoft.AspNetCore.Http;
1010
using Microsoft.AspNetCore.Http.Features;
1111
using Microsoft.AspNetCore.Http.Features.Authentication;
12-
using Microsoft.AspNetCore.Http.Features.Authentication.Internal;
1312
using Microsoft.Extensions.Internal;
1413
using Microsoft.Extensions.Logging;
1514
using Microsoft.Extensions.Options;

src/Microsoft.AspNetCore.Server.IISIntegration/IISMiddleware.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
using Microsoft.AspNetCore.Http;
1010
using Microsoft.AspNetCore.Http.Features;
1111
using Microsoft.AspNetCore.Http.Features.Authentication;
12-
using Microsoft.AspNetCore.Http.Features.Authentication.Internal;
1312
using Microsoft.Extensions.Internal;
1413
using Microsoft.Extensions.Logging;
1514
using Microsoft.Extensions.Options;
@@ -60,7 +59,7 @@ public async Task Invoke(HttpContext httpContext)
6059
_logger.LogTrace($"'{MSAspNetCoreToken}' does not match the expected pairing token '{_pairingToken}', skipping {nameof(IISMiddleware)}.");
6160
await _next(httpContext);
6261
return;
63-
}
62+
}
6463

6564
if (_options.ForwardClientCertificate)
6665
{

0 commit comments

Comments
 (0)