Skip to content

Commit ec4ff82

Browse files
committed
Remove fully qualified ConcurrentDictionary in TxTable by adding open
1 parent 31ad54f commit ec4ff82

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/ProvidedTypes.fs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6986,6 +6986,7 @@ namespace ProviderImplementation.ProvidedTypes
69866986

69876987
open System
69886988
open System.IO
6989+
open System.Collections.Concurrent
69896990
open System.Collections.Generic
69906991
open System.Reflection
69916992
open ProviderImplementation.ProvidedTypes.AssemblyReader
@@ -6998,7 +6999,7 @@ namespace ProviderImplementation.ProvidedTypes
69986999
// Unique wrapped type definition objects must be translated to unique wrapper objects, based
69997000
// on object identity.
70007001
type TxTable<'T2>() =
7001-
let tab = System.Collections.Concurrent.ConcurrentDictionary<int, Lazy<'T2>>()
7002+
let tab = ConcurrentDictionary<int, Lazy<'T2>>()
70027003
member __.Get inp f =
70037004
let lazyVal = tab.GetOrAdd(inp, fun _ -> lazy (f()))
70047005
lazyVal.Value

0 commit comments

Comments
 (0)