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

Attempt to fix code style infractions

This commit is contained in:
Dean Herbert 2022-10-04 16:17:38 +09:00
parent 345430ab39
commit 395ab58892
2 changed files with 2 additions and 4 deletions

View File

@ -18,6 +18,7 @@ namespace osu.Game.Rulesets.Mania.Skinning.Argon
switch (component)
{
case ManiaSkinComponent maniaComponent:
// TODO: Once everything is finalised, consider throwing UnsupportedSkinComponentException on missing entries.
switch (maniaComponent.Component)
{
case ManiaSkinComponents.HitTarget:
@ -25,8 +26,6 @@ namespace osu.Game.Rulesets.Mania.Skinning.Argon
case ManiaSkinComponents.KeyArea:
return new ArgonKeyArea();
// TODO: Once everything is finalised, consider throwing UnsupportedSkinComponentException on missing entries.
}
break;

View File

@ -22,6 +22,7 @@ namespace osu.Game.Rulesets.Osu.Skinning.Argon
return new ArgonJudgementPiece(resultComponent.Component);
case OsuSkinComponent osuComponent:
// TODO: Once everything is finalised, consider throwing UnsupportedSkinComponentException on missing entries.
switch (osuComponent.Component)
{
case OsuSkinComponents.HitCircle:
@ -56,8 +57,6 @@ namespace osu.Game.Rulesets.Osu.Skinning.Argon
case OsuSkinComponents.CursorTrail:
return new ArgonCursorTrail();
// TODO: Once everything is finalised, consider throwing UnsupportedSkinComponentException on missing entries.
}
break;