diff --git a/ICD.Common.Utils/EnumUtils.cs b/ICD.Common.Utils/EnumUtils.cs
index 38241fe..e27261d 100644
--- a/ICD.Common.Utils/EnumUtils.cs
+++ b/ICD.Common.Utils/EnumUtils.cs
@@ -533,17 +533,7 @@ namespace ICD.Common.Utils
// ReSharper disable once CompareNonConstrainedGenericWithNull
throw new ArgumentException(string.Format("{0} is not an enum", value == null ? "NULL" : value.GetType().Name), "value");
- return ToEnum((object)value);
- }
-
- ///
- /// Converts the given enum value to an Enum.
- ///
- ///
- ///
- public static Enum ToEnum(object value)
- {
- return (Enum)value;
+ return (Enum)(object)value;
}
#endregion