Rename NoOp to Noop
To match the rest of the classes
This commit is contained in:
@@ -263,6 +263,9 @@ namespace Umbraco.Cms.Core.DependencyInjection
|
||||
|
||||
// Register telemetry service used to gather data about installed packages
|
||||
Services.AddUnique<ITelemetryService, TelemetryService>();
|
||||
|
||||
// Register a noop IHtmlSanitizer to be replaced
|
||||
Services.AddUnique<IHtmlSanitizer, NoopHtmlSanitizer>();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
namespace Umbraco.Cms.Core.Security
|
||||
{
|
||||
public class NoOpHtmlSanitizer : IHtmlSanitizer
|
||||
public class NoopHtmlSanitizer : IHtmlSanitizer
|
||||
{
|
||||
public string Sanitize(string html)
|
||||
{
|
||||
Reference in New Issue
Block a user