diff --git a/src/Umbraco.Web/HealthCheck/HealthCheckNotificationMethodResolver.cs b/src/Umbraco.Web/HealthCheck/HealthCheckNotificationMethodResolver.cs index ca17dcdcd8..d20c075ba7 100644 --- a/src/Umbraco.Web/HealthCheck/HealthCheckNotificationMethodResolver.cs +++ b/src/Umbraco.Web/HealthCheck/HealthCheckNotificationMethodResolver.cs @@ -1,21 +1,16 @@ using System; using System.Collections.Generic; using System.Linq; -using System.Text; -using System.Threading.Tasks; -using System.Web; -using Umbraco.Core; +using System.Configuration; +using System.Reflection; using Umbraco.Core.Logging; using Umbraco.Core.ObjectResolution; -using Umbraco.Core.Persistence.SqlSyntax; using Umbraco.Web.HealthCheck.NotificationMethods; +using Umbraco.Core.Configuration.HealthChecks; namespace Umbraco.Web.HealthCheck { - using System.Configuration; - using System.Reflection; - using Umbraco.Core.Configuration.HealthChecks; /// /// Resolves all health check instances @@ -41,7 +36,7 @@ namespace Umbraco.Web.HealthCheck /// /// This will ctor the IHealthCheckNotificatationMethod instances /// - private class HealthCheckNotificationMethodServiceProvider : IServiceProvider + private class HealthCheckNotificationMethodServiceProvider : IServiceProvider { public object GetService(Type serviceType) { diff --git a/src/Umbraco.Web/HealthCheck/HealthCheckResolver.cs b/src/Umbraco.Web/HealthCheck/HealthCheckResolver.cs index 98f79056ad..6e26849dc8 100644 --- a/src/Umbraco.Web/HealthCheck/HealthCheckResolver.cs +++ b/src/Umbraco.Web/HealthCheck/HealthCheckResolver.cs @@ -1,13 +1,9 @@ using System; using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; using System.Web; using Umbraco.Core; using Umbraco.Core.Logging; using Umbraco.Core.ObjectResolution; -using Umbraco.Core.Persistence.SqlSyntax; namespace Umbraco.Web.HealthCheck { diff --git a/src/Umbraco.Web/Scheduling/HealthCheckNotifier.cs b/src/Umbraco.Web/Scheduling/HealthCheckNotifier.cs index a9002c61dd..3851d86df6 100644 --- a/src/Umbraco.Web/Scheduling/HealthCheckNotifier.cs +++ b/src/Umbraco.Web/Scheduling/HealthCheckNotifier.cs @@ -1,16 +1,10 @@ -using System; -using System.Collections.Generic; using System.Configuration; using System.Linq; -using System.Net.Mail; -using System.Text; using System.Threading; using System.Threading.Tasks; -using Slack.Webhooks; using Umbraco.Core; using Umbraco.Core.Configuration.HealthChecks; using Umbraco.Core.Logging; -using Umbraco.Core.Security; using Umbraco.Core.Sync; using Umbraco.Web.HealthCheck;