diff --git a/src/Umbraco.Infrastructure/PropertyEditors/MultipleValueEditor.cs b/src/Umbraco.Infrastructure/PropertyEditors/MultipleValueEditor.cs index 24315ca42e..02f40b2978 100644 --- a/src/Umbraco.Infrastructure/PropertyEditors/MultipleValueEditor.cs +++ b/src/Umbraco.Infrastructure/PropertyEditors/MultipleValueEditor.cs @@ -29,25 +29,6 @@ public class MultipleValueEditor : DataValueEditor : base(localizedTextService, shortStringHelper, jsonSerializer, ioHelper, attribute) => _jsonSerializer = jsonSerializer; - /// - /// Override so that we can return an array to the editor for multi-select values - /// - /// - /// - /// - /// - public override object ToEditor(IProperty property, string? culture = null, string? segment = null) - { - var json = base.ToEditor(property, culture, segment)?.ToString(); - string[]? result = null; - if (json is not null) - { - result = _jsonSerializer.Deserialize(json); - } - - return result ?? Array.Empty(); - } - /// /// When multiple values are selected a json array will be posted back so we need to format for storage in /// the database which is a comma separated string value