mirror of
https://github.com/ppy/osu.git
synced 2025-01-28 08:55:35 +08:00
onComplete
should private
This commit is contained in:
parent
951302fe61
commit
fa30f3348f
@ -92,7 +92,7 @@ namespace osu.Game.Database
|
||||
TModel refetchModel = r.Find<TModel>(id);
|
||||
ExportToStream(refetchModel, stream);
|
||||
});
|
||||
}).ContinueWith(OnComplete);
|
||||
}).ContinueWith(onComplete);
|
||||
}
|
||||
|
||||
protected virtual void ExportToStream(TModel model, Stream outputStream) => createZipArchive(model, outputStream);
|
||||
@ -119,7 +119,7 @@ namespace osu.Game.Database
|
||||
}
|
||||
}
|
||||
|
||||
protected void OnComplete(Task t)
|
||||
private void onComplete(Task t)
|
||||
{
|
||||
if (t.IsFaulted)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user