Renaming ToHashSet method to avoid collision

This commit is contained in:
Chris Cameron
2018-01-09 11:05:45 -05:00
parent 46c9cb0cf0
commit e377f7993b
4 changed files with 5 additions and 5 deletions

View File

@@ -119,7 +119,7 @@ namespace ICD.Common.Utils
// Reflection is slow and this method is called a lot, so we cache the results.
if (!s_EnumValuesCache.ContainsKey(type))
s_EnumValuesCache[type] = GetValuesUncached(type).ToHashSet();
s_EnumValuesCache[type] = GetValuesUncached(type).ToIcdHashSet();
return s_EnumValuesCache[type];
}