Move all sets to object initialiser for code formatting reasons

This commit is contained in:
Dean Herbert
2020-03-05 10:21:25 +09:00
parent 3b19467ead
commit fadebcdc03
2 changed files with 7 additions and 9 deletions

View File

@ -100,12 +100,7 @@ namespace osu.Game.Tests.Visual
/// <summary>
/// The <see cref="Mod"/> this test case tests.
/// </summary>
public readonly Mod Mod;
public ModTestData(Mod mod)
{
Mod = mod;
}
public Mod Mod;
}
}
}