mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
[ALL] One utility class now
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user