From 0f5632ced82ccba0c113dfcd1ab484fd4b90f696 Mon Sep 17 00:00:00 2001 From: Austin Noska Date: Thu, 18 Jul 2019 11:37:33 -0400 Subject: [PATCH] refactor: changed public method to private as it is only being used from within EnumUtils --- ICD.Common.Utils/EnumUtils.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ICD.Common.Utils/EnumUtils.cs b/ICD.Common.Utils/EnumUtils.cs index 07cdee3..03005f4 100644 --- a/ICD.Common.Utils/EnumUtils.cs +++ b/ICD.Common.Utils/EnumUtils.cs @@ -148,7 +148,7 @@ namespace ICD.Common.Utils /// Gets the values from an enumeration without performing any caching. This is slow because of reflection. /// /// - public static IEnumerable GetValues(Type type) + private static IEnumerable GetValues(Type type) { if (type == null) throw new ArgumentNullException("type");