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 | |
parent | 3ccd0209c90c9165c968213eb5770c7f004ef968 (diff) | |
download | DotNetOpenAuth-48439ed3496f98d1d5b4ed8db887270df414ca79.zip DotNetOpenAuth-48439ed3496f98d1d5b4ed8db887270df414ca79.tar.gz DotNetOpenAuth-48439ed3496f98d1d5b4ed8db887270df414ca79.tar.bz2 |
Fixed a couple build warnings.
-rw-r--r-- | src/DotNetOpenAuth.Core/Messaging/HmacAlgorithms.cs | 2 | ||||
-rw-r--r-- | src/DotNetOpenAuth.OAuth2.Client/OAuth2/ClientCredentialApplicator.cs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/DotNetOpenAuth.Core/Messaging/HmacAlgorithms.cs b/src/DotNetOpenAuth.Core/Messaging/HmacAlgorithms.cs index 233c1bc..872b4ac 100644 --- a/src/DotNetOpenAuth.Core/Messaging/HmacAlgorithms.cs +++ b/src/DotNetOpenAuth.Core/Messaging/HmacAlgorithms.cs @@ -12,7 +12,7 @@ namespace DotNetOpenAuth.Messaging { using System.Text; /// <summary> - /// HMAC-SHA algorithm names that can be passed to the <see cref="HMAC.Create"/> method. + /// HMAC-SHA algorithm names that can be passed to the <see cref="HMAC.Create(string)"/> method. /// </summary> internal static class HmacAlgorithms { /// <summary> 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); |