Browse Source

Mark interface as internal.

Bart De Smet 8 years ago
parent
commit
da9bdd0cd7
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Ix.NET/Source/System.Interactive.Async/IIListProvider.cs

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

@@ -11,7 +11,7 @@ namespace System.Linq
     /// <summary>
     /// An iterator that can produce an array or <see cref="List{TElement}"/> through an optimized path.
     /// </summary>
-    interface IIListProvider<TElement> : IAsyncEnumerable<TElement>
+    internal interface IIListProvider<TElement> : IAsyncEnumerable<TElement>
     {
         /// <summary>
         /// Produce an array of the sequence through an optimized path.