diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2009-11-19 10:43:07 -0800 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2009-11-19 10:43:07 -0800 |
commit | 5e28e7b1850e809df6d91bda093add757950f902 (patch) | |
tree | db4a06311873da4c7d58255750ed0f0cb68a13d2 /src | |
parent | b60b75f294bd2fc26dfdab500a658887ba88a59a (diff) | |
download | DotNetOpenAuth-5e28e7b1850e809df6d91bda093add757950f902.zip DotNetOpenAuth-5e28e7b1850e809df6d91bda093add757950f902.tar.gz DotNetOpenAuth-5e28e7b1850e809df6d91bda093add757950f902.tar.bz2 |
Enabled missing code contract.
This fixes a failing unit test.
Diffstat (limited to 'src')
-rw-r--r-- | src/DotNetOpenAuth/OpenId/RelyingParty/IProviderEndpoint.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DotNetOpenAuth/OpenId/RelyingParty/IProviderEndpoint.cs b/src/DotNetOpenAuth/OpenId/RelyingParty/IProviderEndpoint.cs index 566a929..a90ddd4 100644 --- a/src/DotNetOpenAuth/OpenId/RelyingParty/IProviderEndpoint.cs +++ b/src/DotNetOpenAuth/OpenId/RelyingParty/IProviderEndpoint.cs @@ -20,7 +20,7 @@ namespace DotNetOpenAuth.OpenId.RelyingParty { /// Because information provided by this interface is suppplied by a /// user's individually published documents, it may be incomplete or inaccurate. /// </remarks> - ////[ContractClass(typeof(IProviderEndpointContract))] + [ContractClass(typeof(IProviderEndpointContract))] public interface IProviderEndpoint { /// <summary> /// Gets the detected version of OpenID implemented by the Provider. |