From 28167388d69e9a5fd0f70b6aa52fec69ba0623ca Mon Sep 17 00:00:00 2001 From: EVAST9919 Date: Tue, 7 Nov 2017 02:53:07 +0300 Subject: [PATCH] Remove useless calls --- osu.Game/Overlays/Profile/RankChart.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/osu.Game/Overlays/Profile/RankChart.cs b/osu.Game/Overlays/Profile/RankChart.cs index b8690efa2a..1caa171c88 100644 --- a/osu.Game/Overlays/Profile/RankChart.cs +++ b/osu.Game/Overlays/Profile/RankChart.cs @@ -101,7 +101,6 @@ namespace osu.Game.Overlays.Profile // use logarithmic coordinates graph.Values = ranks.Select(x => -(float)Math.Log(x)); graph.SetStaticBallPosition(); - updateRankTexts(); } } @@ -130,7 +129,6 @@ namespace osu.Game.Overlays.Profile protected override void OnHoverLost(InputState state) { graph.HideBall(); - updateRankTexts(); base.OnHoverLost(state); }