mirror of
https://github.com/ppy/osu.git
synced 2025-01-14 04:02:59 +08:00
Rename class back to original name so I can read the diff
This commit is contained in:
parent
4549a865d9
commit
0158102467
@ -107,7 +107,7 @@ namespace osu.Game.Tests.Database
|
||||
storage.Dispose();
|
||||
}
|
||||
|
||||
private class TestLegacyModelExporter : LegacyModelExporter<TestRealmObject>
|
||||
private class TestLegacyModelExporter : LegacyExporter<TestRealmObject>
|
||||
{
|
||||
public TestLegacyModelExporter(Storage storage)
|
||||
: base(storage)
|
||||
|
@ -17,7 +17,7 @@ using Logger = osu.Framework.Logging.Logger;
|
||||
|
||||
namespace osu.Game.Database
|
||||
{
|
||||
public abstract class LegacyArchiveExporter<TModel> : LegacyModelExporter<TModel>
|
||||
public abstract class LegacyArchiveExporter<TModel> : LegacyExporter<TModel>
|
||||
where TModel : RealmObject, IHasNamedFiles, IHasGuidPrimaryKey
|
||||
{
|
||||
protected LegacyArchiveExporter(Storage storage)
|
||||
|
@ -19,7 +19,7 @@ namespace osu.Game.Database
|
||||
/// <summary>
|
||||
/// A class which handles exporting legacy user data of a single type from osu-stable.
|
||||
/// </summary>
|
||||
public abstract class LegacyModelExporter<TModel>
|
||||
public abstract class LegacyExporter<TModel>
|
||||
where TModel : RealmObject, IHasNamedFiles, IHasGuidPrimaryKey
|
||||
{
|
||||
/// <summary>
|
||||
@ -54,7 +54,7 @@ namespace osu.Game.Database
|
||||
/// Create a new exporter for each export, otherwise it will cause confusing notifications.
|
||||
/// </summary>
|
||||
/// <param name="storage">Storage for storing exported files. Basically it is used to provide export stream</param>
|
||||
protected LegacyModelExporter(Storage storage)
|
||||
protected LegacyExporter(Storage storage)
|
||||
{
|
||||
exportStorage = storage.GetStorageForDirectory(@"exports");
|
||||
UserFileStorage = storage.GetStorageForDirectory(@"files");
|
@ -11,7 +11,7 @@ using osu.Game.Scoring;
|
||||
|
||||
namespace osu.Game.Database
|
||||
{
|
||||
public class LegacyScoreExporter : LegacyModelExporter<ScoreInfo>
|
||||
public class LegacyScoreExporter : LegacyExporter<ScoreInfo>
|
||||
{
|
||||
public LegacyScoreExporter(Storage storage)
|
||||
: base(storage)
|
||||
|
Loading…
Reference in New Issue
Block a user