1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 09:27:29 +08:00

Rename fetch method to be non-plural to match all others

This commit is contained in:
Dean Herbert 2023-01-23 15:43:52 +09:00
parent 8ae82484b5
commit 9c2494383f
2 changed files with 2 additions and 2 deletions

View File

@ -192,7 +192,7 @@ namespace osu.Game.Graphics
/// Retrieves colour for a <see cref="RankingTier"/>.
/// See https://www.figma.com/file/YHWhp9wZ089YXgB7pe6L1k/Tier-Colours
/// </summary>
public ColourInfo ForRankingTiers(RankingTier tier)
public ColourInfo ForRankingTier(RankingTier tier)
{
switch (tier)
{

View File

@ -91,7 +91,7 @@ namespace osu.Game.Overlays.Profile.Header.Components
tier = RankingTier.Lustrous;
}
return osuColour.ForRankingTiers(tier);
return osuColour.ForRankingTier(tier);
}
}
}