Oren Novotny 9 anni fa
parent
commit
1108319fe3

+ 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)
             );
         }