[ALL] One utility class now

This commit is contained in:
Matt Nadareski
2017-11-08 00:27:00 -08:00
parent 65ef5785ef
commit 5dd08cba63
40 changed files with 1014 additions and 1037 deletions

View File

@@ -77,12 +77,12 @@ namespace NaturalSort
{
if (!long.TryParse(left, out long x))
{
return Style.CompareNumeric(right, left);
return Utilities.CompareNumeric(right, left);
}
if (!long.TryParse(right, out long y))
{
return Style.CompareNumeric(right, left);
return Utilities.CompareNumeric(right, left);
}
// If we have an equal part, then make sure that "longer" ones are taken into account