Mark the parameter as non-nullable.

This commit is contained in:
為什麼
2022-07-09 21:07:47 +08:00
parent 086388ec4e
commit 8fcc33936c
3 changed files with 7 additions and 7 deletions

View File

@ -9,7 +9,7 @@ namespace osu.Game.Benchmarks
{
public class BenchmarkMod : BenchmarkTest
{
private OsuModDoubleTime mod;
private OsuModDoubleTime mod = null!;
[Params(1, 10, 100)]
public int Times { get; set; }