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 private class TestLegacySkin : LegacySkin, IBeatmapSkin
{ {
public TestLegacySkin(Beatmap beatmap, IResourceStore<byte[]> storage, string fileName) 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)
{ {
} }
} }