浏览代码

Fix warning on accessibility modifiers.

Bart De Smet 7 年之前
父节点
当前提交
dc6ba35066
共有 1 个文件被更改,包括 1 次插入2 次删除
  1. 1 2
      Ix.NET/Source/System.Linq.Async/System/Linq/AsyncIterator.Opt.cs

+ 1 - 2
Ix.NET/Source/System.Linq.Async/System/Linq/AsyncIterator.Opt.cs

@@ -3,12 +3,11 @@
 // See the LICENSE file in the project root for more information. 
 
 using System.Collections.Generic;
-using System.Threading;
 using System.Threading.Tasks;
 
 namespace System.Linq
 {
-    partial class AsyncIterator<TSource>
+    internal partial class AsyncIterator<TSource>
     {
         public virtual IAsyncEnumerable<TResult> Select<TResult>(Func<TSource, TResult> selector)
         {