Remove redundant parenthesis

This commit is contained in:
Dean Herbert
2022-05-13 21:31:49 +09:00
parent 38b8baf095
commit d9782b5ef6

View File

@ -60,7 +60,7 @@ namespace osu.Game.Rulesets.Osu.Edit.Blueprints.HitCircles.Components
Scale = new Vector2(hitObject.Scale);
if ((hitObject is IHasComboInformation combo))
if (hitObject is IHasComboInformation combo)
ring.BorderColour = combo.GetComboColour(skin);
double editorTime = editorClock.CurrentTime;