Browse Source

Remove redundant statement

Bond_009 4 years ago
parent
commit
bf4829a38c
1 changed files with 1 additions and 2 deletions
  1. 1 2
      MediaBrowser.Common/Extensions/ShuffleExtensions.cs

+ 1 - 2
MediaBrowser.Common/Extensions/ShuffleExtensions.cs

@@ -33,8 +33,7 @@ namespace MediaBrowser.Common.Extensions
             int n = list.Count;
             while (n > 1)
             {
-                n--;
-                int k = rng.Next(n + 1);
+                int k = rng.Next(n--);
                 T value = list[k];
                 list[k] = list[n];
                 list[n] = value;