1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-06 20:33:08 +08:00

Remove unused variable

This commit is contained in:
Dean Herbert 2021-01-05 16:00:25 +09:00
parent b3f08b29ca
commit 5904e426eb

View File

@ -323,14 +323,12 @@ namespace osu.Game.Tests.Visual.Background
private class FadeAccessibleResults : ResultsScreen private class FadeAccessibleResults : ResultsScreen
{ {
private FadeAccessibleBackground background;
public FadeAccessibleResults(ScoreInfo score) public FadeAccessibleResults(ScoreInfo score)
: base(score, true) : base(score, true)
{ {
} }
protected override BackgroundScreen CreateBackground() => background = new FadeAccessibleBackground(Beatmap.Value); protected override BackgroundScreen CreateBackground() => new FadeAccessibleBackground(Beatmap.Value);
public Vector2 ExpectedBackgroundBlur => new Vector2(BACKGROUND_BLUR); public Vector2 ExpectedBackgroundBlur => new Vector2(BACKGROUND_BLUR);
} }