diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2012-03-01 17:32:34 -0800 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2012-03-01 17:32:34 -0800 |
commit | 0e559126d66e9c9b7582cfc914674f5f5b30dcad (patch) | |
tree | 6dc85d1367853390f4b633e04627dc1c1c32bd65 /samples/OAuthAuthorizationServer/Controllers/OAuthController.cs | |
parent | ca90d63b42b5dd73e6fe03eff34455aba5755e8e (diff) | |
download | DotNetOpenAuth-0e559126d66e9c9b7582cfc914674f5f5b30dcad.zip DotNetOpenAuth-0e559126d66e9c9b7582cfc914674f5f5b30dcad.tar.gz DotNetOpenAuth-0e559126d66e9c9b7582cfc914674f5f5b30dcad.tar.bz2 |
Fixed StyleCop mesage.
Diffstat (limited to 'samples/OAuthAuthorizationServer/Controllers/OAuthController.cs')
-rw-r--r-- | samples/OAuthAuthorizationServer/Controllers/OAuthController.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/samples/OAuthAuthorizationServer/Controllers/OAuthController.cs b/samples/OAuthAuthorizationServer/Controllers/OAuthController.cs index 2444776..2a52e4f 100644 --- a/samples/OAuthAuthorizationServer/Controllers/OAuthController.cs +++ b/samples/OAuthAuthorizationServer/Controllers/OAuthController.cs @@ -25,7 +25,7 @@ if (this.authorizationServer.TryPrepareAccessTokenResponse(out response)) {
return this.authorizationServer.Channel.PrepareResponse(response).AsActionResult();
} else {
- throw new HttpException((int) HttpStatusCode.BadRequest, "Missing OAuth 2.0 request message.");
+ throw new HttpException((int)HttpStatusCode.BadRequest, "Missing OAuth 2.0 request message.");
}
}
|