Remove null hinting for now

This commit is contained in:
Dean Herbert 2019-09-04 21:35:59 +09:00
parent b80a8296cd
commit 8e8f33ec7b
1 changed files with 0 additions and 2 deletions

View File

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