diff options
Diffstat (limited to 'src/DotNetOpenAuth.Messaging/Reporting.cs')
-rw-r--r-- | src/DotNetOpenAuth.Messaging/Reporting.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/DotNetOpenAuth.Messaging/Reporting.cs b/src/DotNetOpenAuth.Messaging/Reporting.cs index fcd35c7..c528972 100644 --- a/src/DotNetOpenAuth.Messaging/Reporting.cs +++ b/src/DotNetOpenAuth.Messaging/Reporting.cs @@ -115,7 +115,7 @@ namespace DotNetOpenAuth { [SuppressMessage("Microsoft.Performance", "CA1810:InitializeReferenceTypeStaticFieldsInline", Justification = "We do more than field initialization here.")] [SuppressMessage("Microsoft.Design", "CA1031:DoNotCatchGeneralExceptionTypes", Justification = "Reporting MUST NOT cause unhandled exceptions.")] static Reporting() { - Enabled = DotNetOpenAuthSection.Configuration.Reporting.Enabled; + Enabled = DotNetOpenAuthSection.Reporting.Enabled; } /// <summary> @@ -150,7 +150,7 @@ namespace DotNetOpenAuth { /// Gets the configuration to use for reporting. /// </summary> internal static ReportingElement Configuration { - get { return DotNetOpenAuthSection.Configuration.Reporting; } + get { return DotNetOpenAuthSection.Reporting; } } /// <summary> |