mirror of
https://github.com/ppy/osu.git
synced 2024-12-14 09:32:55 +08:00
typo fix
This commit is contained in:
parent
60ef88844c
commit
ed53168267
@ -122,7 +122,7 @@ namespace osu.Game.Tests.Skins.IO
|
||||
|
||||
await import1.PerformRead(async s =>
|
||||
{
|
||||
await new LegacySkinExporter(osu.Dependencies.Get<Storage>(), osu.Dependencies.Get<RealmAccess>(), new ProgressNotification(), exportStream).ExportASync(s);
|
||||
await new LegacySkinExporter(osu.Dependencies.Get<Storage>(), osu.Dependencies.Get<RealmAccess>(), new ProgressNotification(), exportStream).ExportAsync(s);
|
||||
});
|
||||
|
||||
string exportFilename = import1.GetDisplayString();
|
||||
@ -204,7 +204,7 @@ namespace osu.Game.Tests.Skins.IO
|
||||
Assert.IsFalse(s.Protected);
|
||||
Assert.AreEqual(typeof(ArgonSkin), s.CreateInstance(skinManager).GetType());
|
||||
|
||||
await new LegacySkinExporter(osu.Dependencies.Get<Storage>(), osu.Dependencies.Get<RealmAccess>(), new ProgressNotification(), exportStream).ExportASync(s);
|
||||
await new LegacySkinExporter(osu.Dependencies.Get<Storage>(), osu.Dependencies.Get<RealmAccess>(), new ProgressNotification(), exportStream).ExportAsync(s);
|
||||
|
||||
Assert.Greater(exportStream.Length, 0);
|
||||
});
|
||||
@ -237,7 +237,7 @@ namespace osu.Game.Tests.Skins.IO
|
||||
Assert.IsFalse(s.Protected);
|
||||
Assert.AreEqual(typeof(DefaultLegacySkin), s.CreateInstance(skinManager).GetType());
|
||||
|
||||
await new LegacySkinExporter(osu.Dependencies.Get<Storage>(), osu.Dependencies.Get<RealmAccess>(), new ProgressNotification(), exportStream).ExportASync(s);
|
||||
await new LegacySkinExporter(osu.Dependencies.Get<Storage>(), osu.Dependencies.Get<RealmAccess>(), new ProgressNotification(), exportStream).ExportAsync(s);
|
||||
|
||||
Assert.Greater(exportStream.Length, 0);
|
||||
});
|
||||
|
@ -49,7 +49,7 @@ namespace osu.Game.Database
|
||||
switch (item)
|
||||
{
|
||||
case SkinInfo:
|
||||
await new LegacySkinExporter(exportStorage, realmAccess, notification, stream).ExportASync(item);
|
||||
await new LegacySkinExporter(exportStorage, realmAccess, notification, stream).ExportAsync(item);
|
||||
break;
|
||||
|
||||
case ScoreInfo:
|
||||
@ -57,7 +57,7 @@ namespace osu.Game.Database
|
||||
break;
|
||||
|
||||
case BeatmapSetInfo:
|
||||
await new LegacyBeatmapExporter(exportStorage, realmAccess, notification, stream).ExportASync(item);
|
||||
await new LegacyBeatmapExporter(exportStorage, realmAccess, notification, stream).ExportAsync(item);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
@ -54,11 +54,11 @@ namespace osu.Game.Database
|
||||
/// </summary>
|
||||
/// <param name="uuid">The model which have Guid.</param>
|
||||
/// <returns></returns>
|
||||
public virtual async Task ExportASync(IHasGuidPrimaryKey uuid)
|
||||
{
|
||||
bool canCancel = true;
|
||||
Notification.CancelRequested += () => canCancel;
|
||||
|
||||
public virtual async Task ExportAsync(IHasGuidPrimaryKey uuid)
|
||||
Guid id = uuid.ID;
|
||||
await Task.Run(() =>
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user