diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2009-12-01 23:52:00 -0800 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2009-12-01 23:52:23 -0800 |
commit | 7524b5696dcd129efbf98cc392cf491fb4ae52a2 (patch) | |
tree | e27b10d937388c6a8afa29bbeeaf2dce0a311de2 /src | |
parent | c3fa77496617b84a6eb751fc80d556b4b898bd50 (diff) | |
download | DotNetOpenAuth-7524b5696dcd129efbf98cc392cf491fb4ae52a2.zip DotNetOpenAuth-7524b5696dcd129efbf98cc392cf491fb4ae52a2.tar.gz DotNetOpenAuth-7524b5696dcd129efbf98cc392cf491fb4ae52a2.tar.bz2 |
Fixed StyleCop message.v3.3.0.9336
Diffstat (limited to 'src')
-rw-r--r-- | src/DotNetOpenAuth/OpenId/RelyingParty/OpenIdRelyingParty.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DotNetOpenAuth/OpenId/RelyingParty/OpenIdRelyingParty.cs b/src/DotNetOpenAuth/OpenId/RelyingParty/OpenIdRelyingParty.cs index b00ee65..e2d6356 100644 --- a/src/DotNetOpenAuth/OpenId/RelyingParty/OpenIdRelyingParty.cs +++ b/src/DotNetOpenAuth/OpenId/RelyingParty/OpenIdRelyingParty.cs @@ -406,7 +406,7 @@ namespace DotNetOpenAuth.OpenId.RelyingParty { Contract.Requires<ArgumentNullException>(userSuppliedIdentifier != null); Contract.Requires<ArgumentNullException>(realm != null); Contract.Ensures(Contract.Result<IEnumerable<IAuthenticationRequest>>() != null); - + // This next code contract is a BAD idea, because it causes each authentication request to be generated // at least an extra time. ////Contract.Ensures(Contract.ForAll(Contract.Result<IEnumerable<IAuthenticationRequest>>(), el => el != null)); |