diff --git a/X10D/src/StringExtensions.cs b/X10D/src/StringExtensions.cs
index e1bc43b..d5eb7c3 100644
--- a/X10D/src/StringExtensions.cs
+++ b/X10D/src/StringExtensions.cs
@@ -39,13 +39,9 @@
///
/// Parses a into an .
///
- /// The type of the Enum
- /// String value to parse
- /// The Enum corresponding to the stringExtensions
- [Obsolete(
- "This method has been deprecated in favor of Humanizer.DehumanizeTo(). "+
- "Please consider downloading the Humanizer package for more stable implementations of this method."
- )]
+ /// The type of the .
+ /// The value to parse
+ /// The value corresponding to the .
public static T EnumParse(this string value)
{
return value.EnumParse(false);
@@ -54,14 +50,10 @@
///
/// Parses a into an .
///
- /// The type of the Enum
- /// String value to parse
+ /// The type of the .
+ /// The value to parse
/// Whether or not to ignore casing.
- /// The Enum corresponding to the stringExtensions
- [Obsolete(
- "This method has been deprecated in favor of Humanizer.DehumanizeTo(). " +
- "Please consider downloading the Humanizer package for more stable implementations of this method."
- )]
+ /// The value corresponding to the
public static T EnumParse(this string value, bool ignoreCase)
{
if (value == null)