From 44404b70e1910a7f6be7421776663a8de801a00a Mon Sep 17 00:00:00 2001 From: Shannon Date: Tue, 19 Nov 2013 10:40:21 +1100 Subject: [PATCH] fixes up protected field - changes to private --- .../PropertyEditors/MultiNodeTreePickerPropertyEditor.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Umbraco.Web/PropertyEditors/MultiNodeTreePickerPropertyEditor.cs b/src/Umbraco.Web/PropertyEditors/MultiNodeTreePickerPropertyEditor.cs index d323de2e72..631703e28c 100644 --- a/src/Umbraco.Web/PropertyEditors/MultiNodeTreePickerPropertyEditor.cs +++ b/src/Umbraco.Web/PropertyEditors/MultiNodeTreePickerPropertyEditor.cs @@ -13,7 +13,7 @@ namespace Umbraco.Web.PropertyEditors { public MultiNodeTreePickerPropertyEditor() { - InternalPreValues = new Dictionary + _internalPreValues = new Dictionary { {"multiPicker", true} }; @@ -24,11 +24,11 @@ namespace Umbraco.Web.PropertyEditors return new MultiNodePickerPreValueEditor(); } - protected IDictionary InternalPreValues; + private IDictionary _internalPreValues; public override IDictionary DefaultPreValues { - get { return InternalPreValues; } - set { InternalPreValues = value; } + get { return _internalPreValues; } + set { _internalPreValues = value; } } internal class MultiNodePickerPreValueEditor : PreValueEditor