Bart De Smet пре 8 година
родитељ
комит
918d90755a

+ 1 - 0
Ix.NET/Source/System.Interactive.Async.Providers/AsyncEnumerableExecutor.cs

@@ -1,6 +1,7 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the Apache 2.0 License.
 // See the LICENSE file in the project root for more information. 
+
 using System.Linq.Expressions;
 using System.Threading;
 using System.Threading.Tasks;

+ 1 - 0
Ix.NET/Source/System.Interactive.Async.Providers/AsyncEnumerableQuery.cs

@@ -1,6 +1,7 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the Apache 2.0 License.
 // See the LICENSE file in the project root for more information. 
+
 using System.Collections.Generic;
 using System.Linq.Expressions;
 using System.Threading;

+ 1 - 0
Ix.NET/Source/System.Interactive.Async.Providers/AsyncEnumerableRewriter.cs

@@ -1,6 +1,7 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the Apache 2.0 License.
 // See the LICENSE file in the project root for more information. 
+
 using System.Collections.Generic;
 using System.Collections.ObjectModel;
 using System.Globalization;

+ 5 - 0
Ix.NET/Source/System.Interactive.Async.Providers/Reflection.cs

@@ -1,7 +1,9 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the Apache 2.0 License.
 // See the LICENSE file in the project root for more information. 
+
 #if CRIPPLED_REFLECTION
+
 using System.Linq;
 using System.Reflection;
 
@@ -83,7 +85,9 @@ namespace System
         }
     }
 }
+
 #else
+
 namespace System
 {
     static class TypeExtensions
@@ -109,4 +113,5 @@ namespace System
         }
     }
 }
+
 #endif