From c4bd21914d3a4908933ece0f7458af2378a77e31 Mon Sep 17 00:00:00 2001 From: EVAST9919 Date: Fri, 28 Apr 2017 15:37:22 +0300 Subject: [PATCH] warning fixes --- osu.Game/Screens/Play/SongProgressInfo.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/osu.Game/Screens/Play/SongProgressInfo.cs b/osu.Game/Screens/Play/SongProgressInfo.cs index 127a87f3bf..fa179d05c1 100644 --- a/osu.Game/Screens/Play/SongProgressInfo.cs +++ b/osu.Game/Screens/Play/SongProgressInfo.cs @@ -12,9 +12,9 @@ namespace osu.Game.Screens.Play { public class SongProgressInfo : Container { - private InfoText timeCurrent; - private InfoText timeLeft; - private InfoText progress; + private readonly InfoText timeCurrent; + private readonly InfoText timeLeft; + private readonly InfoText progress; private const int margin = 10;