Remove unnecessary manager parameter

Confused why I added this in the first place..
This commit is contained in:
Dean Herbert
2021-11-25 18:36:01 +09:00
parent cc1b91e4bd
commit e2ebcf7a26
7 changed files with 10 additions and 14 deletions

View File

@ -19,16 +19,12 @@ namespace osu.Game.Database
/// </summary>
protected abstract string FileExtension { get; }
protected readonly IModelManager<TModel> Manager;
protected readonly Storage UserFileStorage;
private readonly Storage exportStorage;
protected LegacyExporter(Storage storage, IModelManager<TModel> manager)
protected LegacyExporter(Storage storage)
{
Manager = manager;
exportStorage = storage.GetStorageForDirectory(@"exports");
UserFileStorage = storage.GetStorageForDirectory(@"files");
}