From 1076795fae23f646cc78b45f786fbed121159ca8 Mon Sep 17 00:00:00 2001 From: Jack Kanarish Date: Mon, 17 Dec 2018 09:34:37 -0500 Subject: [PATCH] refactor: make isenumtype public for use in other classes --- 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 d94afa2..07cdee3 100644 --- a/ICD.Common.Utils/EnumUtils.cs +++ b/ICD.Common.Utils/EnumUtils.cs @@ -40,7 +40,7 @@ namespace ICD.Common.Utils /// Returns true if the given type is an enum. /// /// - private static bool IsEnumType(Type type) + public static bool IsEnumType(Type type) { if (type == null) throw new ArgumentNullException("type");