1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 16:07:24 +08:00

Removed duplicate unreachable code

This commit is contained in:
Aurelian 2024-05-24 08:55:10 +02:00
parent d948e0fc5c
commit 481883801f

View File

@ -126,21 +126,6 @@ namespace osu.Game.Rulesets.Osu.Tests.Editor
EditorBeatmap.Add(slider);
});
break;
AddStep("Add perfect curve slider", () =>
{
slider = new Slider { StartTime = EditorClock.CurrentTime, Position = new Vector2(300) };
PathControlPoint[] points =
{
new PathControlPoint(new Vector2(0), PathType.PERFECT_CURVE),
new PathControlPoint(new Vector2(50, 25)),
new PathControlPoint(new Vector2(25, 100)),
};
slider.Path = new SliderPath(points);
EditorBeatmap.Add(slider);
});
break;
case 3:
AddStep("Add catmull slider", () =>
{