From c3699c139596773e626c13e965219ff5b74d1a30 Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Fri, 20 Jan 2017 03:15:52 +0800 Subject: [PATCH] Remove unused prevCount variable. --- osu.Game/Graphics/UserInterface/RollingCounter.cs | 7 ------- 1 file changed, 7 deletions(-) diff --git a/osu.Game/Graphics/UserInterface/RollingCounter.cs b/osu.Game/Graphics/UserInterface/RollingCounter.cs index 6a21da9bce..e55001fd99 100644 --- a/osu.Game/Graphics/UserInterface/RollingCounter.cs +++ b/osu.Game/Graphics/UserInterface/RollingCounter.cs @@ -1,7 +1,6 @@ //Copyright (c) 2007-2016 ppy Pty Ltd . //Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE -using osu.Framework; using osu.Framework.Graphics; using osu.Framework.Graphics.Containers; using osu.Framework.Graphics.Sprites; @@ -9,10 +8,6 @@ using osu.Framework.Graphics.Transformations; using System; using System.Collections.Generic; using System.Diagnostics; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using osu.Framework.Allocation; namespace osu.Game.Graphics.UserInterface { @@ -64,7 +59,6 @@ namespace osu.Game.Graphics.UserInterface } } - protected T prevCount; protected T count; /// @@ -78,7 +72,6 @@ namespace osu.Game.Graphics.UserInterface } set { - prevCount = count; count = value; if (IsLoaded) {