1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 16:12:57 +08:00

Remove empty argument list

This commit is contained in:
Craftplacer 2020-08-30 16:23:00 +02:00
parent 337037ab3b
commit 43d144b7c0

View File

@ -82,7 +82,7 @@ namespace osu.Game.Tests.Beatmaps.Formats
private class TestLegacySkin : LegacySkin, IBeatmapSkin
{
public TestLegacySkin(Beatmap beatmap, IResourceStore<byte[]> storage, string fileName)
: base(new SkinInfo() { Name = "Test Skin", Creator = "Craftplacer" }, storage, null, fileName)
: base(new SkinInfo { Name = "Test Skin", Creator = "Craftplacer" }, storage, null, fileName)
{
}
}