Skip to content

Commit f1afb7f

Browse files
committed
Remove redundant namespaces
1 parent 1169f7b commit f1afb7f

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

src/FSharp.Control.AsyncSeq/AsyncSeq.fs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ namespace FSharp.Control
66

77
open System
88
open System.Diagnostics
9-
open System.IO
109
open System.Collections.Generic
1110
open System.Threading
1211
open System.Threading.Tasks
@@ -1660,7 +1659,7 @@ module AsyncSeq =
16601659

16611660

16621661
let groupByAsync (p:'a -> Async<'k>) (s:AsyncSeq<'a>) : AsyncSeq<'k * AsyncSeq<'a>> = asyncSeq {
1663-
let groups = Collections.Generic.Dictionary<'k, AsyncSeqSrc< 'a>>()
1662+
let groups = Dictionary<'k, AsyncSeqSrc< 'a>>()
16641663
let close group =
16651664
AsyncSeqSrcImpl.close group
16661665
let closeGroups () =

0 commit comments

Comments
 (0)