mirror of
https://github.com/osukey/osukey.git
synced 2025-04-29 10:47:22 +09:00
Remove weird single-use private method
This commit is contained in:
parent
e0823ffd03
commit
3afe198d1d
@ -28,9 +28,6 @@ namespace osu.Game.Database
|
|||||||
}
|
}
|
||||||
|
|
||||||
public override void ExportToStream(TModel model, Stream outputStream, ProgressNotification? notification, CancellationToken cancellationToken = default)
|
public override void ExportToStream(TModel model, Stream outputStream, ProgressNotification? notification, CancellationToken cancellationToken = default)
|
||||||
=> exportZipArchive(model, outputStream, notification, cancellationToken);
|
|
||||||
|
|
||||||
private void exportZipArchive(TModel model, Stream outputStream, ProgressNotification? notification, CancellationToken cancellationToken = default)
|
|
||||||
{
|
{
|
||||||
using (var writer = new ZipWriter(outputStream, new ZipWriterOptions(CompressionType.Deflate)))
|
using (var writer = new ZipWriter(outputStream, new ZipWriterOptions(CompressionType.Deflate)))
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user