Fixing ambiguous reference

This commit is contained in:
Chris Cameron
2017-10-13 17:11:55 -04:00
parent 35811f8273
commit d8ab73d356

View File

@@ -141,7 +141,7 @@ namespace ICD.Common.Utils
if (method == null)
throw new ArgumentNullException("method");
foreach (Attribute attribute in method.GetCustomAttributes<Attribute>(false))
foreach (Attribute attribute in ReflectionExtensions.GetCustomAttributes<Attribute>(method, false))
s_AttributeToMethodCache[attribute] = method;
}