소스 검색

Some code cosmetics.

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;