diff --git a/src/Umbraco.Core/Persistence/RepositoryResolver.cs b/src/Umbraco.Core/Persistence/RepositoryResolver.cs index a6dd431652..80affde02c 100644 --- a/src/Umbraco.Core/Persistence/RepositoryResolver.cs +++ b/src/Umbraco.Core/Persistence/RepositoryResolver.cs @@ -43,8 +43,6 @@ namespace Umbraco.Core.Persistence internal TRepository ResolveByType(IUnitOfWork unitOfWork) where TRepository : class, IRepository { - //TODO: REMOVE all of these binding flags once the IDictionaryRepository, IMacroRepository are public! As this probably - // wont work in medium trust! var createMethod = this.Value.GetType().GetMethods() .First(x => x.Name == "Create" + typeof (TRepository).Name.Substring(1));