summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.OAuth/Configuration/OAuthElement.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/DotNetOpenAuth.OAuth/Configuration/OAuthElement.cs')
-rw-r--r--src/DotNetOpenAuth.OAuth/Configuration/OAuthElement.cs2
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 &lt;oauth&gt; 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();
}
}