File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments