mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-02-16 05:05:05 +00:00
refactor: changed public method to private as it is only being used from within EnumUtils
This commit is contained in:
@@ -148,7 +148,7 @@ namespace ICD.Common.Utils
|
|||||||
/// Gets the values from an enumeration without performing any caching. This is slow because of reflection.
|
/// Gets the values from an enumeration without performing any caching. This is slow because of reflection.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public static IEnumerable<int> GetValues(Type type)
|
private static IEnumerable<int> GetValues(Type type)
|
||||||
{
|
{
|
||||||
if (type == null)
|
if (type == null)
|
||||||
throw new ArgumentNullException("type");
|
throw new ArgumentNullException("type");
|
||||||
|
|||||||
Reference in New Issue
Block a user