Removed obsolete methods from Umbraco.Core which are not used

This commit is contained in:
Anthony
2018-07-01 18:58:58 +01:00
parent 2f7ddb20db
commit 43fdd691fe
13 changed files with 1 additions and 461 deletions

View File

@@ -693,13 +693,6 @@ namespace Umbraco.Core
return s.LastIndexOf(value, StringComparison.OrdinalIgnoreCase);
}
[Obsolete("Use Guid.TryParse instead")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static bool IsGuid(this string str, bool withHyphens)
{
Guid g;
return Guid.TryParse(str, out g);
}
/// <summary>
/// Tries to parse a string into the supplied type by finding and using the Type's "Parse" method