From 57d22a87c03d715cce9ede4e4f8bb92a7b5617e9 Mon Sep 17 00:00:00 2001 From: Lars-Erik Aabech Date: Sun, 9 Sep 2018 22:00:26 +0200 Subject: [PATCH] REVIEW/FIX: Just removing placeholder IApplicationTreeService and ISectionService registrations until we figure defaulting. --- src/Umbraco.Core/Composing/Composers/ServicesComposer.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/Umbraco.Core/Composing/Composers/ServicesComposer.cs b/src/Umbraco.Core/Composing/Composers/ServicesComposer.cs index fc898dd3b6..3455c4693e 100644 --- a/src/Umbraco.Core/Composing/Composers/ServicesComposer.cs +++ b/src/Umbraco.Core/Composing/Composers/ServicesComposer.cs @@ -58,8 +58,9 @@ namespace Umbraco.Core.Composing.Composers //TODO: These are replaced in the web project - we need to declare them so that // something is wired up, just not sure this is very nice but will work for now. - container.RegisterSingleton(); - container.RegisterSingleton(); + // fixme - we need to get rid of re-registering, and I need this gone for now. >< + //container.RegisterSingleton(); + //container.RegisterSingleton(); return container; }