Refactor filesystems registration

This commit is contained in:
Stephan
2019-01-09 17:39:32 +01:00
parent 2bc63b9700
commit 944d47f669
17 changed files with 211 additions and 112 deletions

View File

@@ -1,5 +1,4 @@
using System;
using System.Web;
using System.Web;
using Umbraco.Core;
using Umbraco.Core.Composing;
using Umbraco.Core.Exceptions;
@@ -11,7 +10,7 @@ namespace Umbraco.Web.Composing
/// </summary>
/// <typeparam name="TModule">The type of the injected module.</typeparam>
public abstract class ModuleInjector<TModule> : IHttpModule
where TModule : IHttpModule
where TModule : class, IHttpModule
{
protected TModule Module { get; private set; }