summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2009-08-25 16:50:25 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2009-08-25 16:50:25 -0700
commit0db73bcf5d94b4817bc0828e5f3b85d300614c97 (patch)
treeb591d5a18fc2e78474d8f3056bbaa57e4428f131 /src
parentf480b463c326a60603ab79d7e30da45b5e866d78 (diff)
downloadDotNetOpenAuth-0db73bcf5d94b4817bc0828e5f3b85d300614c97.zip
DotNetOpenAuth-0db73bcf5d94b4817bc0828e5f3b85d300614c97.tar.gz
DotNetOpenAuth-0db73bcf5d94b4817bc0828e5f3b85d300614c97.tar.bz2
Fixed build break after merge.
Diffstat (limited to 'src')
-rw-r--r--src/DotNetOpenAuth/OpenId/RelyingParty/OpenIdRelyingPartyControlBase.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DotNetOpenAuth/OpenId/RelyingParty/OpenIdRelyingPartyControlBase.cs b/src/DotNetOpenAuth/OpenId/RelyingParty/OpenIdRelyingPartyControlBase.cs
index ed305e8..71df3d0 100644
--- a/src/DotNetOpenAuth/OpenId/RelyingParty/OpenIdRelyingPartyControlBase.cs
+++ b/src/DotNetOpenAuth/OpenId/RelyingParty/OpenIdRelyingPartyControlBase.cs
@@ -457,8 +457,8 @@ namespace DotNetOpenAuth.OpenId.RelyingParty {
/// </summary>
/// <param name="request">The request.</param>
public void LogOn(IAuthenticationRequest request) {
- ErrorUtilities.VerifyArgumentNotNull(request, "request");
Contract.Requires<ArgumentNullException>(request != null);
+ ErrorUtilities.VerifyArgumentNotNull(request, "request");
if (this.IsPopupAppropriate(request)) {
this.ScriptPopupWindow(request);