diff --git a/ICD.Common.Utils/AttributeUtils.cs b/ICD.Common.Utils/AttributeUtils.cs index d2977d8..beda60c 100644 --- a/ICD.Common.Utils/AttributeUtils.cs +++ b/ICD.Common.Utils/AttributeUtils.cs @@ -148,7 +148,6 @@ namespace ICD.Common.Utils /// /// public static IEnumerable GetClassAttributes() - where T : Attribute { return s_AttributeToTypeCache.Select(kvp => kvp.Key) .OfType(); @@ -162,7 +161,6 @@ namespace ICD.Common.Utils /// [CanBeNull] public static T GetClassAttribute(Type type) - where T : Attribute { if (type == null) throw new ArgumentNullException("type"); @@ -177,7 +175,6 @@ namespace ICD.Common.Utils /// /// public static IEnumerable GetClassAttributes(Type type) - where T : Attribute { if (type == null) throw new ArgumentNullException("type");