Remove many now unnecessary null-checks

This commit is contained in:
Dean Herbert
2017-07-19 15:45:23 +09:00
parent 21d07428fe
commit 64ebc01a3b
7 changed files with 19 additions and 19 deletions

View File

@ -35,7 +35,7 @@ namespace osu.Game.Graphics.Containers
protected override void Update()
{
var track = Beatmap.Value?.Track;
var track = Beatmap.Value.Track;
if (track == null)
return;