mirror of
https://github.com/ppy/osu.git
synced 2025-01-15 12:42:54 +08:00
Remove pointless override method in RealmArchiveModelManager
This commit is contained in:
parent
88145dedf1
commit
70c107b434
@ -5,12 +5,9 @@ using System;
|
|||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
using osu.Framework.Platform;
|
using osu.Framework.Platform;
|
||||||
using osu.Game.Database;
|
using osu.Game.Database;
|
||||||
using osu.Game.Extensions;
|
using osu.Game.Extensions;
|
||||||
using osu.Game.IO.Archives;
|
|
||||||
using osu.Game.Models;
|
using osu.Game.Models;
|
||||||
using osu.Game.Overlays.Notifications;
|
using osu.Game.Overlays.Notifications;
|
||||||
using Realms;
|
using Realms;
|
||||||
@ -93,11 +90,6 @@ namespace osu.Game.Stores
|
|||||||
item.Files.Add(namedUsage);
|
item.Files.Add(namedUsage);
|
||||||
}
|
}
|
||||||
|
|
||||||
public override async Task<ILive<TModel>?> Import(TModel item, ArchiveReader? archive = null, bool lowPriority = false, CancellationToken cancellationToken = default)
|
|
||||||
{
|
|
||||||
return await base.Import(item, archive, lowPriority, cancellationToken).ConfigureAwait(false);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Delete multiple items.
|
/// Delete multiple items.
|
||||||
/// This will post notifications tracking progress.
|
/// This will post notifications tracking progress.
|
||||||
|
Loading…
Reference in New Issue
Block a user