1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-13 08:32:57 +08:00

clean up code stuff

This commit is contained in:
OliBomby 2023-04-25 19:06:29 +02:00
parent 755ad25dbe
commit e4b64bdc3e
3 changed files with 4 additions and 7 deletions

View File

@ -14,7 +14,6 @@ using osu.Game.Rulesets.Objects;
using osu.Game.Rulesets.Objects.Types;
using osu.Game.Rulesets.Mania.Objects;
using osu.Game.Beatmaps.ControlPoints;
using osu.Game.Beatmaps.Formats;
using osu.Game.Beatmaps.Legacy;
using osu.Game.Utils;

View File

@ -8,7 +8,6 @@ using osu.Game.Rulesets.Objects.Types;
using System.Collections.Generic;
using osu.Game.Rulesets.Objects;
using System.Linq;
using System.Text.Json.Serialization;
using System.Threading;
using Newtonsoft.Json;
using osu.Framework.Bindables;

View File

@ -120,11 +120,10 @@ namespace osu.Game.Screens.Edit.Compose.Components.Timeline
if (item is IHasSliderVelocity)
{
AddInternal(new DifficultyPointPiece(Item)
{
Anchor = Anchor.TopLeft,
Origin = Anchor.BottomCentre
}
);
{
Anchor = Anchor.TopLeft,
Origin = Anchor.BottomCentre
});
}
}