diff --git a/src/Umbraco.Core/Composing/LazyCollectionBuilderBase.cs b/src/Umbraco.Core/Composing/LazyCollectionBuilderBase.cs
index 52e5a764fd..ee263f458f 100644
--- a/src/Umbraco.Core/Composing/LazyCollectionBuilderBase.cs
+++ b/src/Umbraco.Core/Composing/LazyCollectionBuilderBase.cs
@@ -75,37 +75,6 @@ namespace Umbraco.Core.Composing
return This;
}
- ///
- /// Removes a type from the collection.
- ///
- /// The type to remove.
- /// The builder.
- public TBuilder Remove()
- where T : TItem
- {
- Configure(types =>
- {
- var type = typeof(T);
- if (types.Contains(type)) types.Remove(type);
- });
- return This;
- }
-
- ///
- /// Removes a type from the collection.
- ///
- /// The type to remove.
- /// The builder.
- public TBuilder Remove(Type type)
- {
- Configure(types =>
- {
- EnsureType(type, "remove");
- if (types.Contains(type)) types.Remove(type);
- });
- return This;
- }
-
///
/// Adds a types producer to the collection.
///