diff --git a/src/Umbraco.Examine/IValueSetBuilder.cs b/src/Umbraco.Examine/IValueSetBuilder.cs
index 89aa907926..1c4890f404 100644
--- a/src/Umbraco.Examine/IValueSetBuilder.cs
+++ b/src/Umbraco.Examine/IValueSetBuilder.cs
@@ -5,18 +5,17 @@ using Umbraco.Core.Models;
namespace Umbraco.Examine
{
///
- /// Creates a collection of to be indexed based on a collection of
+ /// Creates a collection of to be indexed based on a collection of
///
- ///
- public interface IValueSetBuilder
- where TContent : IContentBase
+ ///
+ public interface IValueSetBuilder
{
///
- /// Creates a collection of to be indexed based on a collection of
+ /// Creates a collection of to be indexed based on a collection of
///
///
///
- IEnumerable GetValueSets(params TContent[] content);
+ IEnumerable GetValueSets(params T[] content);
}
}