Implement IDisposable in ArchiveReaders

This commit is contained in:
Drew DeVault
2016-10-10 09:26:34 -04:00
committed by Dean Herbert
parent 0267eb7649
commit 30f2eeda7c
3 changed files with 13 additions and 2 deletions

View File

@ -48,5 +48,10 @@ namespace osu.Desktop.Beatmaps.IO
public override BeatmapMetadata ReadMetadata()
{
return FirstMap.Metadata;
}
public override void Dispose()
{
// no-op
}
}