1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-18 19:10:28 +08:00

Remove unnecessary arguments in WorkingBeatmap's constructor.

This commit is contained in:
Huo Yaoyuan
2017-05-08 16:42:53 +08:00
Unverified
parent f37c857af8
commit 4c26a02e99
3 changed files with 6 additions and 6 deletions
+1 -1
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);