Fix code quality issues

This commit is contained in:
Henry Lin
2022-01-17 21:32:13 +08:00
parent c49cd60487
commit eddf453294
3 changed files with 4 additions and 4 deletions

View File

@ -24,8 +24,6 @@ namespace osu.Game.Screens.Ranking.Expanded.Statistics
private RollingCounter<int> counter;
private PerformanceAttributes attributes;
public PerformanceStatistic(ScoreInfo score)
: base("PP")
{
@ -43,7 +41,7 @@ namespace osu.Game.Screens.Ranking.Expanded.Statistics
{
if (pp != null)
{
attributes = pp;
TooltipContent = pp;
performance.Value = (int)Math.Round(pp.Total, MidpointRounding.AwayFromZero);
}
}
@ -68,6 +66,6 @@ namespace osu.Game.Screens.Ranking.Expanded.Statistics
public ITooltip<PerformanceAttributes> GetCustomTooltip() => new PerformanceStatisticTooltip();
public PerformanceAttributes TooltipContent => attributes;
public PerformanceAttributes TooltipContent { get; private set; }
}
}