mirror of
https://github.com/ppy/osu.git
synced 2025-01-12 11:42:54 +08:00
RemoveTeam shouldn't have nullable arg
This commit is contained in:
parent
625ed729ee
commit
cb4adf115c
@ -188,11 +188,8 @@ namespace osu.Game.Tournament.Screens.Drawings.Components
|
||||
setScrollState(ScrollState.Idle);
|
||||
}
|
||||
|
||||
public void RemoveTeam(TournamentTeam? team)
|
||||
public void RemoveTeam(TournamentTeam team)
|
||||
{
|
||||
if (team == null)
|
||||
return;
|
||||
|
||||
availableTeams.Remove(team);
|
||||
|
||||
foreach (var c in Children)
|
||||
|
Loading…
Reference in New Issue
Block a user