1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-15 05:02:55 +08:00

Remove unused variable

This commit is contained in:
Andrei Zavatski 2020-01-08 19:22:07 +03:00
parent 1428952377
commit dc64ba8ed8

View File

@ -19,9 +19,8 @@ namespace osu.Game.Tests.Visual.Online
public TestSceneRankingsCountryFilter() public TestSceneRankingsCountryFilter()
{ {
var countryBindable = new Bindable<Country>(); var countryBindable = new Bindable<Country>();
CountryFilter filter;
Add(filter = new CountryFilter Add(new CountryFilter
{ {
Country = { BindTarget = countryBindable } Country = { BindTarget = countryBindable }
}); });