mirror of
https://github.com/osukey/osukey.git
synced 2025-08-04 23:24:04 +09:00
Enforce using get-only auto property where possible
This commit is contained in:
@ -92,6 +92,6 @@ namespace osu.Game.Screens.Ranking
|
||||
|
||||
protected override void OnDeactivated() => colouredPart.FadeColour(inactiveColour, 200, Easing.OutQuint);
|
||||
|
||||
public string TooltipText { get; private set; }
|
||||
public string TooltipText { get; }
|
||||
}
|
||||
}
|
||||
|
@ -363,7 +363,7 @@ namespace osu.Game.Screens.Select
|
||||
|
||||
public class InfoLabel : Container, IHasTooltip
|
||||
{
|
||||
public string TooltipText { get; private set; }
|
||||
public string TooltipText { get; }
|
||||
|
||||
public InfoLabel(BeatmapStatistic statistic)
|
||||
{
|
||||
|
Reference in New Issue
Block a user