Browse Source
Merge pull request #19415 from yuxl01/Fix-todo
Update ConcurrentDictionary to Dictionary
pull/19417/head
maliming
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
1 additions and
1 deletions
-
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>() |
|
|
|
}; |
|
|
|
} |
|
|
|
|