mirror of
https://github.com/osukey/osukey.git
synced 2025-08-08 09:03:50 +09:00
Remove unnecessary null check
This commit is contained in:
@ -297,7 +297,7 @@ namespace osu.Game.Screens.Play
|
|||||||
|
|
||||||
protected virtual ScoreInfo CreateScore()
|
protected virtual ScoreInfo CreateScore()
|
||||||
{
|
{
|
||||||
var score = RulesetContainer?.ReplayScore?.ScoreInfo ?? new ScoreInfo
|
var score = RulesetContainer.ReplayScore?.ScoreInfo ?? new ScoreInfo
|
||||||
{
|
{
|
||||||
Beatmap = Beatmap.Value.BeatmapInfo,
|
Beatmap = Beatmap.Value.BeatmapInfo,
|
||||||
Ruleset = ruleset,
|
Ruleset = ruleset,
|
||||||
|
Reference in New Issue
Block a user