From 8d0096490734eef2867f30f613d841be6f93ea22 Mon Sep 17 00:00:00 2001 From: Bjarke Berg Date: Mon, 26 Aug 2024 13:55:45 +0200 Subject: [PATCH] Cleanup --- .../PropertyEditors/RichTextEditorBlockValidator.cs | 4 +--- .../PropertyEditors/RichTextPropertyEditor.cs | 1 - .../PropertyEditors/Validators/RichTextRequiredValidator.cs | 2 -- 3 files changed, 1 insertion(+), 6 deletions(-) diff --git a/src/Umbraco.Infrastructure/PropertyEditors/RichTextEditorBlockValidator.cs b/src/Umbraco.Infrastructure/PropertyEditors/RichTextEditorBlockValidator.cs index 8392bc6dd350..dc4775f6b7f4 100644 --- a/src/Umbraco.Infrastructure/PropertyEditors/RichTextEditorBlockValidator.cs +++ b/src/Umbraco.Infrastructure/PropertyEditors/RichTextEditorBlockValidator.cs @@ -1,12 +1,10 @@ using Microsoft.Extensions.Logging; -using Umbraco.Cms.Core; using Umbraco.Cms.Core.Cache.PropertyEditors; using Umbraco.Cms.Core.Models.Blocks; -using Umbraco.Cms.Core.PropertyEditors; using Umbraco.Cms.Core.Serialization; using Umbraco.Cms.Core.Services; -namespace Umbraco.Cms.Infrastructure.PropertyEditors.Validators; +namespace Umbraco.Cms.Core.PropertyEditors; internal class RichTextEditorBlockValidator : BlockEditorValidatorBase { diff --git a/src/Umbraco.Infrastructure/PropertyEditors/RichTextPropertyEditor.cs b/src/Umbraco.Infrastructure/PropertyEditors/RichTextPropertyEditor.cs index bc8d168bb5d1..772e72283377 100644 --- a/src/Umbraco.Infrastructure/PropertyEditors/RichTextPropertyEditor.cs +++ b/src/Umbraco.Infrastructure/PropertyEditors/RichTextPropertyEditor.cs @@ -19,7 +19,6 @@ using Umbraco.Cms.Core.Strings; using Umbraco.Cms.Core.Templates; using Umbraco.Cms.Infrastructure.Macros; -using Umbraco.Cms.Infrastructure.PropertyEditors.Validators; using Umbraco.Cms.Infrastructure.Templates; using Umbraco.Extensions; diff --git a/src/Umbraco.Infrastructure/PropertyEditors/Validators/RichTextRequiredValidator.cs b/src/Umbraco.Infrastructure/PropertyEditors/Validators/RichTextRequiredValidator.cs index 00133b556f31..b239f0bda565 100644 --- a/src/Umbraco.Infrastructure/PropertyEditors/Validators/RichTextRequiredValidator.cs +++ b/src/Umbraco.Infrastructure/PropertyEditors/Validators/RichTextRequiredValidator.cs @@ -1,9 +1,7 @@ using System.ComponentModel.DataAnnotations; using Microsoft.Extensions.Logging; -using Umbraco.Cms.Core.PropertyEditors.Validators; using Umbraco.Cms.Core.Serialization; using Umbraco.Cms.Core.Services; -using Umbraco.Cms.Infrastructure.PropertyEditors.Validators; namespace Umbraco.Cms.Core.PropertyEditors.Validators;