diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2009-11-03 13:22:36 -0800 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2009-11-03 13:24:22 -0800 |
commit | 28d7aabb8e019c4d392c35fa579e14f01facb1e1 (patch) | |
tree | f4356446d839b4fdd7745db8011e656b1b5c680a /src | |
parent | 7ef43cfe9d4037be93fd4de753873c3d2845c77d (diff) | |
download | DotNetOpenAuth-28d7aabb8e019c4d392c35fa579e14f01facb1e1.zip DotNetOpenAuth-28d7aabb8e019c4d392c35fa579e14f01facb1e1.tar.gz DotNetOpenAuth-28d7aabb8e019c4d392c35fa579e14f01facb1e1.tar.bz2 |
Fixed Code Contract warning.
Diffstat (limited to 'src')
-rw-r--r-- | src/DotNetOpenAuth/OpenId/RelyingParty/OpenIdRelyingPartyAjaxControlBase.cs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/DotNetOpenAuth/OpenId/RelyingParty/OpenIdRelyingPartyAjaxControlBase.cs b/src/DotNetOpenAuth/OpenId/RelyingParty/OpenIdRelyingPartyAjaxControlBase.cs index 4281d96..6bf3f8b 100644 --- a/src/DotNetOpenAuth/OpenId/RelyingParty/OpenIdRelyingPartyAjaxControlBase.cs +++ b/src/DotNetOpenAuth/OpenId/RelyingParty/OpenIdRelyingPartyAjaxControlBase.cs @@ -335,8 +335,6 @@ namespace DotNetOpenAuth.OpenId.RelyingParty { /// used to determine the user's control of the <see cref="IAuthenticationRequest.ClaimedIdentifier"/>. /// </returns> protected override IEnumerable<IAuthenticationRequest> CreateRequests(Identifier identifier) { - Contract.Requires<ArgumentNullException>(identifier != null); - // We delegate all our logic to another method, since invoking base. methods // within an iterator method results in unverifiable code. return this.CreateRequestsCore(base.CreateRequests(identifier)); |