diff options
Diffstat (limited to 'src/DotNetOpenAuth.OAuth/Configuration/OAuthElement.cs')
-rw-r--r-- | src/DotNetOpenAuth.OAuth/Configuration/OAuthElement.cs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/DotNetOpenAuth.OAuth/Configuration/OAuthElement.cs b/src/DotNetOpenAuth.OAuth/Configuration/OAuthElement.cs index 3972e6f..8b34e49 100644 --- a/src/DotNetOpenAuth.OAuth/Configuration/OAuthElement.cs +++ b/src/DotNetOpenAuth.OAuth/Configuration/OAuthElement.cs @@ -6,7 +6,6 @@ namespace DotNetOpenAuth.Configuration { using System.Configuration; - using System.Diagnostics.Contracts; /// <summary> /// Represents the <oauth> element in the host's .config file. @@ -38,7 +37,6 @@ namespace DotNetOpenAuth.Configuration { /// </summary> public static OAuthElement Configuration { get { - Contract.Ensures(Contract.Result<OAuthElement>() != null); return (OAuthElement)ConfigurationManager.GetSection(SectionName) ?? new OAuthElement(); } } |