浏览代码

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;