mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-02-16 13:15:07 +00:00
Fixing ambiguous reference
This commit is contained in:
@@ -141,7 +141,7 @@ namespace ICD.Common.Utils
|
|||||||
if (method == null)
|
if (method == null)
|
||||||
throw new ArgumentNullException("method");
|
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;
|
s_AttributeToMethodCache[attribute] = method;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user