1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 20:22:55 +08:00

remove unnecessary lines

This commit is contained in:
Aergwyn 2017-11-30 19:17:11 +01:00
parent c16925059c
commit be018a63c6

View File

@ -54,8 +54,6 @@ namespace osu.Game.Beatmaps.Formats
beatmapVersion = int.Parse(header.Substring(17));
}
//
protected override Beatmap ParseBeatmap(StreamReader stream)
{
return new LegacyBeatmap(base.ParseBeatmap(stream));
@ -181,8 +179,6 @@ namespace osu.Game.Beatmaps.Formats
}
}
//
private void handleGeneral(Beatmap beatmap, string line)
{
if (beatmap == null)
@ -720,8 +716,6 @@ namespace osu.Game.Beatmaps.Formats
variables[pair.Key] = pair.Value;
}
//
/// <summary>
/// Decodes any beatmap variables present in a line into their real values.
/// </summary>