diff options
Diffstat (limited to 'src/DotNetOpenAuth.OAuth2/OAuth2/ChannelElements/IAuthorizationDescription.cs')
-rw-r--r-- | src/DotNetOpenAuth.OAuth2/OAuth2/ChannelElements/IAuthorizationDescription.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DotNetOpenAuth.OAuth2/OAuth2/ChannelElements/IAuthorizationDescription.cs b/src/DotNetOpenAuth.OAuth2/OAuth2/ChannelElements/IAuthorizationDescription.cs index 9c4219c..1ad0422 100644 --- a/src/DotNetOpenAuth.OAuth2/OAuth2/ChannelElements/IAuthorizationDescription.cs +++ b/src/DotNetOpenAuth.OAuth2/OAuth2/ChannelElements/IAuthorizationDescription.cs @@ -74,7 +74,7 @@ namespace DotNetOpenAuth.OAuth2.ChannelElements { string IAuthorizationDescription.User { get { // Null and non-empty are allowed, but not empty. - Contract.Ensures(Contract.Result<string>() != String.Empty); + Contract.Ensures(Contract.Result<string>() != string.Empty); throw new NotImplementedException(); } } |