Fix merge + cleanup

This commit is contained in:
Stephan
2019-01-18 15:05:20 +01:00
parent 876056f0bb
commit 3982732b7d
35 changed files with 122 additions and 122 deletions

View File

@@ -38,9 +38,9 @@ namespace Umbraco.Web.Trees
private readonly ITreeService _treeService;
public ApplicationTreeController(IGlobalSettings globalSettings, UmbracoContext umbracoContext,
ISqlContext sqlContext, ServiceContext services, CacheHelper applicationCache, IProfilingLogger logger,
ISqlContext sqlContext, ServiceContext services, AppCaches appCaches, IProfilingLogger logger,
IRuntimeState runtimeState, ITreeService treeService)
: base(globalSettings, umbracoContext, sqlContext, services, applicationCache, logger, runtimeState)
: base(globalSettings, umbracoContext, sqlContext, services, appCaches, logger, runtimeState)
{
_treeService = treeService;
}