1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 15:47:26 +08:00

make static

This commit is contained in:
cdwcgt 2023-02-23 22:17:13 +09:00
parent 9e1eb50d9b
commit 60bdae41b6

View File

@ -36,7 +36,7 @@ namespace osu.Game.Database
public Action<Notification>? PostNotification { get; set; } public Action<Notification>? PostNotification { get; set; }
// Store the model being exporting. // Store the model being exporting.
private readonly List<TModel> exportingModels = new List<TModel>(); private static readonly List<TModel> exportingModels = new List<TModel>();
/// <summary> /// <summary>
/// Construct exporter. /// Construct exporter.