Remove unnecessary arguments in WorkingBeatmap's constructor.

This commit is contained in:
Huo Yaoyuan
2017-05-08 16:42:53 +08:00
parent f37c857af8
commit 4c26a02e99
3 changed files with 6 additions and 6 deletions

View File

@ -273,7 +273,7 @@ namespace osu.Game.Database
if (beatmapInfo.Metadata == null)
beatmapInfo.Metadata = beatmapInfo.BeatmapSet.Metadata;
WorkingBeatmap working = new DatabaseWorkingBeatmap(this, beatmapInfo, withStoryboard: withStoryboard);
WorkingBeatmap working = new DatabaseWorkingBeatmap(this, beatmapInfo, withStoryboard);
previous?.TransferTo(working);