Browse Source

Merge pull request #19415 from yuxl01/Fix-todo

Update ConcurrentDictionary to  Dictionary
pull/19417/head
maliming 2 years ago
committed by GitHub
parent
commit
73ca5bfacb
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      framework/src/Volo.Abp.Http/Volo/Abp/Http/Modeling/ApplicationApiDescriptionModel.cs

2
framework/src/Volo.Abp.Http/Volo/Abp/Http/Modeling/ApplicationApiDescriptionModel.cs

@ -21,7 +21,7 @@ public class ApplicationApiDescriptionModel
{
return new ApplicationApiDescriptionModel
{
Modules = new ConcurrentDictionary<string, ModuleApiDescriptionModel>(), //TODO: Why ConcurrentDictionary?
Modules = new Dictionary<string, ModuleApiDescriptionModel>(),
Types = new SortedDictionary<string, TypeApiDescriptionModel>()
};
}

Loading…
Cancel
Save