We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d784b3f commit 39b6c8eCopy full SHA for 39b6c8e
1 file changed
Alpha/Services/Excel/ExcelService.cs
@@ -1,4 +1,5 @@
1
-using Alpha.Game;
+using System.Collections.Concurrent;
2
+using Alpha.Game;
3
using Alpha.Gui.Windows;
4
using Alpha.Services.Excel.Cells;
5
using Alpha.Services.Excel.ExdSchema;
@@ -11,7 +12,7 @@ namespace Alpha.Services.Excel;
11
12
public class ExcelService {
13
public AlphaGameData? GameData;
14
public readonly Dictionary<string, IAlphaSheet?> SheetsCache = new();
- public readonly Dictionary<string, ISheetDefinition?> SheetDefinitions = new();
15
+ public readonly ConcurrentDictionary<string, ISheetDefinition?> SheetDefinitions = new();
16
public string[] Sheets = [];
17
18
private readonly ISchemaResolver? resolver;
0 commit comments