Bart De Smet пре 8 година
родитељ
комит
0db5681ca0
1 измењених фајлова са 1 додато и 2 уклоњено
  1. 1 2
      Ix.NET/Source/System.Interactive.Async/AppendPrepend.cs

+ 1 - 2
Ix.NET/Source/System.Interactive.Async/AppendPrepend.cs

@@ -447,8 +447,7 @@ namespace System.Linq
 
                     try
                     {
-                        while (await en.MoveNextAsync(cancellationToken)
-                                       .ConfigureAwait(false))
+                        while (await en.MoveNextAsync(cancellationToken).ConfigureAwait(false))
                         {
                             array[index] = en.Current;
                             ++index;