Oren Novotny 9 years ago
parent
commit
1108319fe3
1 changed files with 1 additions and 3 deletions
  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)
             );
         }