Remove unused test property for now

This commit is contained in:
Dean Herbert
2021-06-02 19:11:09 +09:00
parent e0eb0adb0a
commit cde8de154d

View File

@ -3,9 +3,7 @@
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;
using osu.Framework.Allocation;
using osu.Framework.Bindables; using osu.Framework.Bindables;
using osu.Game.Rulesets.Judgements;
using osu.Game.Rulesets.Mods; using osu.Game.Rulesets.Mods;
using osu.Game.Rulesets.Scoring; using osu.Game.Rulesets.Scoring;
using osu.Game.Rulesets.UI; using osu.Game.Rulesets.UI;
@ -38,8 +36,6 @@ namespace osu.Game.Tests.Visual
public new bool PauseCooldownActive => base.PauseCooldownActive; public new bool PauseCooldownActive => base.PauseCooldownActive;
public readonly List<JudgementResult> Results = new List<JudgementResult>();
/// <summary> /// <summary>
/// Instantiate a replay player that renders an autoplay mod. /// Instantiate a replay player that renders an autoplay mod.
/// </summary> /// </summary>
@ -65,11 +61,5 @@ namespace osu.Game.Tests.Visual
{ {
PauseOnFocusLost = pauseOnFocusLost; PauseOnFocusLost = pauseOnFocusLost;
} }
[BackgroundDependencyLoader]
private void load()
{
ScoreProcessor.NewJudgement += r => Results.Add(r);
}
} }
} }