Resolve CA1805 inspections

"Member is explicitly initialized to its default value"
This commit is contained in:
Bartłomiej Dach
2020-11-01 18:47:40 +01:00
parent 6ff13e399a
commit 2b0bea535e
4 changed files with 4 additions and 4 deletions

View File

@ -18,7 +18,7 @@ namespace osu.Game.Tests.Visual
/// <summary>
/// Whether custom test steps are provided. Custom tests should invoke <see cref="CreateTest"/> to create the test steps.
/// </summary>
protected virtual bool HasCustomSteps { get; } = false;
protected virtual bool HasCustomSteps => false;
protected TestPlayer Player;