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

Commit c2e55f6

Browse files
committed
Cleanup.
1 parent 8be698e commit c2e55f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Microsoft.AspNet.Http/Authentication/DefaultAuthenticationManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ public override void Challenge(AuthenticationProperties properties, string authe
9292
HttpResponseFeature.StatusCode = 401;
9393
var handler = HttpAuthenticationFeature.Handler;
9494

95-
var challengeContext = new ChallengeContext(authenticationScheme, properties == null ? null : properties.Items);
95+
var challengeContext = new ChallengeContext(authenticationScheme, properties?.Items);
9696
if (handler != null)
9797
{
9898
handler.Challenge(challengeContext);

0 commit comments

Comments
 (0)