Further refactoring, using attributes, moving and removing some classes, using DI where necessary.

This commit is contained in:
Shannon
2017-03-08 14:27:39 +01:00
parent a9c5877e5b
commit 5291558b23
42 changed files with 286 additions and 542 deletions

View File

@@ -180,13 +180,7 @@ namespace Umbraco.Core.Configuration.UmbracoSettings
[ConfigurationProperty("EnablePropertyValueConverters")]
internal InnerTextConfigurationElement<bool> EnablePropertyValueConverters
{
get
{
return new OptionalInnerTextConfigurationElement<bool>(
(InnerTextConfigurationElement<bool>)this["EnablePropertyValueConverters"],
//set the default
false);
}
get { return GetOptionalTextElement("EnablePropertyValueConverters", false); }
}
string IContentSection.NotificationEmailAddress