Oren Novotny hace 9 años
padre
commit
1108319fe3
Se han modificado 1 ficheros con 1 adiciones y 3 borrados
  1. 1 3
      Ix.NET/Source/System.Interactive.Async/AsyncEnumerable.cs

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

@@ -24,9 +24,7 @@ namespace System.Linq
         {
             return CreateEnumerable(
                 () => CreateEnumerator<TValue>(
-                    ct => TaskExt.False,
-                    () => { throw new InvalidOperationException(); },
-                    () => { })
+                    ct => TaskExt.False, null, null)
             );
         }