Merge pull request #16518 from nekodex/participantlist-cleanup

Remove unused BDL parameter in `ParticipantList`
This commit is contained in:
Dan Balasescu 2022-01-19 14:59:40 +09:00 committed by GitHub
commit 2475a62f2d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,7 +3,6 @@
using System.Linq;
using osu.Framework.Allocation;
using osu.Framework.Audio;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Game.Graphics.Containers;
@ -17,7 +16,7 @@ namespace osu.Game.Screens.OnlinePlay.Multiplayer.Participants
private FillFlowContainer<ParticipantPanel> panels;
[BackgroundDependencyLoader]
private void load(AudioManager audio)
private void load()
{
InternalChild = new OsuContextMenuContainer
{