Remove unnecessary null check

This commit is contained in:
Dean Herbert 2019-01-04 15:49:23 +09:00
parent b6dc6c4a74
commit 7d1163a7d2
1 changed files with 1 additions and 1 deletions

View File

@ -297,7 +297,7 @@ private void onCompletion()
protected virtual ScoreInfo CreateScore()
{
var score = RulesetContainer?.ReplayScore?.ScoreInfo ?? new ScoreInfo
var score = RulesetContainer.ReplayScore?.ScoreInfo ?? new ScoreInfo
{
Beatmap = Beatmap.Value.BeatmapInfo,
Ruleset = ruleset,