Skip to content

Commit

Permalink
Minor
Browse files Browse the repository at this point in the history
  • Loading branch information
rampaa committed Dec 16, 2023
1 parent 14d8255 commit ab28796
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions JL.Core/Dicts/DictUtils.cs
Original file line number Diff line number Diff line change
Expand Up @@ -564,7 +564,7 @@ public static async Task LoadDictionaries()
{
try
{
// 2022/05/11: 394949, 2022/08/15: 398303, 2023/04/22: 403739
// 2022/05/11: 394949, 2022/08/15: 398303, 2023/04/22: 403739, 2023/12/16: 419334
dict.Contents = dict.Size > 0
? new Dictionary<string, IList<IDictRecord>>(dict.Size)
: new Dictionary<string, IList<IDictRecord>>(450000);
Expand Down Expand Up @@ -639,7 +639,7 @@ public static async Task LoadDictionaries()
{
try
{
// 2022/05/11: 608833, 2022/08/15: 609117, 2023/04/22: 609055
// 2022/05/11: 608833, 2022/08/15: 609117, 2023/04/22: 609055, 2023/12/16: 609238
dict.Contents = dict.Size > 0
? new Dictionary<string, IList<IDictRecord>>(dict.Size)
: new Dictionary<string, IList<IDictRecord>>(630000);
Expand Down Expand Up @@ -707,7 +707,7 @@ public static async Task LoadDictionaries()
{
try
{
// 2022/05/11: 13108, 2022/08/15: 13108, 2023/04/22: 13108
// 2022/05/11: 13108, 2023/12/16: 13108
dict.Contents = dict.Size > 0
? new Dictionary<string, IList<IDictRecord>>(dict.Size)
: new Dictionary<string, IList<IDictRecord>>(13108);
Expand Down

0 comments on commit ab28796

Please sign in to comment.