From b05f8771ae4f6fcc4e3a6fded04046eedfb59e12 Mon Sep 17 00:00:00 2001 From: Ajay Bhargav Baaskaran Date: Thu, 12 Nov 2015 15:19:43 -0800 Subject: [PATCH] Removed comment --- .../OpenIdConnectHandler.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Microsoft.AspNet.Authentication.OpenIdConnect/OpenIdConnectHandler.cs b/src/Microsoft.AspNet.Authentication.OpenIdConnect/OpenIdConnectHandler.cs index b0472703a8..eb88f43696 100644 --- a/src/Microsoft.AspNet.Authentication.OpenIdConnect/OpenIdConnectHandler.cs +++ b/src/Microsoft.AspNet.Authentication.OpenIdConnect/OpenIdConnectHandler.cs @@ -359,7 +359,6 @@ namespace Microsoft.AspNet.Authentication.OpenIdConnect // if any of the error fields are set, throw error null if (!string.IsNullOrEmpty(message.Error)) { - // REVIEW: this error formatting is pretty nuts Logger.LogError(13, "Message contains error: '{0}', error_description: '{1}', error_uri: '{2}'.", message.Error, message.ErrorDescription ?? "ErrorDecription null", message.ErrorUri ?? "ErrorUri null"); return AuthenticateResult.Failed(new OpenIdConnectProtocolException(string.Format(CultureInfo.InvariantCulture, Resources.MessageContainsError, message.Error, message.ErrorDescription ?? "ErrorDecription null", message.ErrorUri ?? "ErrorUri null"))); }