Removed comment

This commit is contained in:
Ajay Bhargav Baaskaran 2015-11-12 15:19:43 -08:00
parent d6cdb4bbfe
commit b05f8771ae
1 changed files with 0 additions and 1 deletions

View File

@ -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")));
}