Update NestedContentPropertyEditor.cs - Update obsolete message (#14953)

Nested Content is removed in v14, not in v13 anymore. This makes sure developers won't get confused / in panic mode
This commit is contained in:
Jeffrey Schoemaker
2023-10-31 12:17:34 +01:00
committed by GitHub
parent 6658a521b2
commit 8e7831f4b8

View File

@@ -28,7 +28,7 @@ namespace Umbraco.Cms.Core.PropertyEditors;
Icon = "icon-thumbnail-list",
ValueEditorIsReusable = false,
IsDeprecated = true)]
[Obsolete("Nested content is obsolete, will be removed in V13")]
[Obsolete("Nested content is obsolete, will be removed in Umbraco 14")]
public class NestedContentPropertyEditor : DataEditor
{
public const string ContentTypeAliasPropertyKey = "ncContentTypeAlias";
@@ -36,7 +36,7 @@ public class NestedContentPropertyEditor : DataEditor
private readonly IIOHelper _ioHelper;
private readonly INestedContentPropertyIndexValueFactory _nestedContentPropertyIndexValueFactory;
[Obsolete("Use non-obsoleted ctor. This will be removed in Umbraco 12.")]
[Obsolete("Use non-obsoleted ctor. This will be removed in Umbraco 14.")]
public NestedContentPropertyEditor(
IDataValueEditorFactory dataValueEditorFactory,
IIOHelper ioHelper)
@@ -44,7 +44,7 @@ public class NestedContentPropertyEditor : DataEditor
{
}
[Obsolete("Use non-obsoleted ctor. This will be removed in Umbraco 13.")]
[Obsolete("Use non-obsoleted ctor. This will be removed in Umbraco 14.")]
public NestedContentPropertyEditor(
IDataValueEditorFactory dataValueEditorFactory,
IIOHelper ioHelper,