Fix component constructors

This commit is contained in:
Stephan
2019-01-04 08:36:38 +01:00
parent 0481c2c736
commit 1bd4cba9ac
11 changed files with 27 additions and 46 deletions

View File

@@ -2,9 +2,9 @@
namespace Umbraco.Web.PublishedCache.NuCache
{
public class NuCacheComponent : IComponent
public sealed class NuCacheComponent : IComponent
{
public void Initialize(IPublishedSnapshotService service)
public NuCacheComponent(IPublishedSnapshotService service)
{
// nothing - this just ensures that the service is created at boot time
}