mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-04-12 12:07:05 +00:00
refactor: changed public method to private as it is only being used from within EnumUtils
This commit is contained in:
parent
9df5f7ae37
commit
0f5632ced8
1 changed files with 1 additions and 1 deletions
|
|
@ -148,7 +148,7 @@ namespace ICD.Common.Utils
|
|||
/// Gets the values from an enumeration without performing any caching. This is slow because of reflection.
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
public static IEnumerable<int> GetValues(Type type)
|
||||
private static IEnumerable<int> GetValues(Type type)
|
||||
{
|
||||
if (type == null)
|
||||
throw new ArgumentNullException("type");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue