1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-12 17:35:10 +08:00

Remove null hinting for now

This commit is contained in:
Dean Herbert 2019-09-04 21:35:59 +09:00
parent b80a8296cd
commit 8e8f33ec7b

View File

@ -3,7 +3,6 @@
using System; using System;
using System.Diagnostics.CodeAnalysis; using System.Diagnostics.CodeAnalysis;
using JetBrains.Annotations;
using Newtonsoft.Json; using Newtonsoft.Json;
namespace osu.Game.Rulesets namespace osu.Game.Rulesets
@ -21,7 +20,6 @@ namespace osu.Game.Rulesets
[JsonIgnore] [JsonIgnore]
public bool Available { get; set; } public bool Available { get; set; }
[CanBeNull]
public virtual Ruleset CreateInstance() public virtual Ruleset CreateInstance()
{ {
if (!Available) return null; if (!Available) return null;