diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2012-07-22 08:12:31 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2012-07-22 08:12:31 -0700 |
commit | 48439ed3496f98d1d5b4ed8db887270df414ca79 (patch) | |
tree | d3a8cd5eddae5ab40545a053fde8deeaed91ecd6 /src/DotNetOpenAuth.OAuth2.Client/OAuth2 | |
parent | 3ccd0209c90c9165c968213eb5770c7f004ef968 (diff) | |
download | DotNetOpenAuth-48439ed3496f98d1d5b4ed8db887270df414ca79.zip DotNetOpenAuth-48439ed3496f98d1d5b4ed8db887270df414ca79.tar.gz DotNetOpenAuth-48439ed3496f98d1d5b4ed8db887270df414ca79.tar.bz2 |
Fixed a couple build warnings.
Diffstat (limited to 'src/DotNetOpenAuth.OAuth2.Client/OAuth2')
-rw-r--r-- | src/DotNetOpenAuth.OAuth2.Client/OAuth2/ClientCredentialApplicator.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DotNetOpenAuth.OAuth2.Client/OAuth2/ClientCredentialApplicator.cs b/src/DotNetOpenAuth.OAuth2.Client/OAuth2/ClientCredentialApplicator.cs index 7c17009..cc4e45f 100644 --- a/src/DotNetOpenAuth.OAuth2.Client/OAuth2/ClientCredentialApplicator.cs +++ b/src/DotNetOpenAuth.OAuth2.Client/OAuth2/ClientCredentialApplicator.cs @@ -129,7 +129,7 @@ namespace DotNetOpenAuth.OAuth2 { if (clientIdentifier != null) { if (this.credential != null) { ErrorUtilities.VerifyHost( - String.Equals(this.credential.UserName, clientIdentifier, StringComparison.Ordinal), + string.Equals(this.credential.UserName, clientIdentifier, StringComparison.Ordinal), "Client identifiers \"{0}\" and \"{1}\" do not match.", this.credential.UserName, clientIdentifier); |