aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Sorting/AlphanumComparator.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Controller/Sorting/AlphanumComparator.cs')
-rw-r--r--MediaBrowser.Controller/Sorting/AlphanumComparator.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/MediaBrowser.Controller/Sorting/AlphanumComparator.cs b/MediaBrowser.Controller/Sorting/AlphanumComparator.cs
index ad1eaf7bf..65dc120ca 100644
--- a/MediaBrowser.Controller/Sorting/AlphanumComparator.cs
+++ b/MediaBrowser.Controller/Sorting/AlphanumComparator.cs
@@ -33,7 +33,7 @@ namespace MediaBrowser.Controller.Sorting
var thatChunk = new StringBuilder();
bool thisNumeric = char.IsDigit(thisCh), thatNumeric = char.IsDigit(thatCh);
- while ((thisMarker < s1.Length) && (char.IsDigit(thisCh) == thisNumeric))
+ while (thisMarker < s1.Length && char.IsDigit(thisCh) == thisNumeric)
{
thisChunk.Append(thisCh);
thisMarker++;
@@ -44,7 +44,7 @@ namespace MediaBrowser.Controller.Sorting
}
}
- while ((thatMarker < s2.Length) && (char.IsDigit(thatCh) == thatNumeric))
+ while (thatMarker < s2.Length && char.IsDigit(thatCh) == thatNumeric)
{
thatChunk.Append(thatCh);
thatMarker++;