Remove unused "name" parameter

This commit is contained in:
Dean Herbert
2020-03-05 10:18:37 +09:00
parent 2a581ef247
commit 0f1f1d1a6b
2 changed files with 4 additions and 10 deletions

View File

@ -97,19 +97,13 @@ namespace osu.Game.Tests.Visual
[CanBeNull]
public Func<bool> PassCondition;
/// <summary>
/// The name of this test case, displayed in the test browser.
/// </summary>
public readonly string Name;
/// <summary>
/// The <see cref="Mod"/> this test case tests.
/// </summary>
public readonly Mod Mod;
public ModTestCaseData(string name, Mod mod)
public ModTestCaseData(Mod mod)
{
Name = name;
Mod = mod;
}
}