1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-23 00:20:38 +08:00

Remove public setter of RealmFileStore.Storage

This commit is contained in:
Dean Herbert
2021-10-12 15:46:32 +09:00
Unverified
parent 129416835f
commit ce128476ae
+3 -2
View File
@@ -17,14 +17,15 @@ using Realms;
namespace osu.Game.Stores
{
/// <summary>
/// Handles the Store and retrieval of Files/FileSets to the database backing
/// Handles the storing of files to the file system (and database) backing.
/// </summary>
public class RealmFileStore
{
private readonly RealmContextFactory realmFactory;
public readonly IResourceStore<byte[]> Store;
public Storage Storage;
public readonly Storage Storage;
public RealmFileStore(RealmContextFactory realmFactory, Storage storage)
{