Remove unnecessary local item storage in SettingsDropdown

This commit is contained in:
smoogipoo
2019-06-25 12:00:05 +09:00
parent 109ca1fd6f
commit fb94cd43a4
4 changed files with 8 additions and 24 deletions

View File

@ -73,7 +73,7 @@ namespace osu.Game.Overlays.Settings.Sections.Audio
private class AudioDeviceSettingsDropdown : SettingsDropdown<string>
{
protected override OsuDropdown<string> CreateDropdown() => new AudioDeviceDropdownControl { Items = Items };
protected override OsuDropdown<string> CreateDropdown() => new AudioDeviceDropdownControl();
private class AudioDeviceDropdownControl : DropdownControl
{