1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-13 12:43:16 +08:00

Remove unused constructor

This commit is contained in:
Dean Herbert 2019-11-11 19:00:14 +09:00
parent bed62e0d2f
commit 82cc6aa0c5

View File

@ -52,11 +52,6 @@ namespace osu.Game.Tests.Visual.UserInterface
private class TestMenuItem : StatefulMenuItem<TestStates>
{
public TestMenuItem(string text, MenuItemType type = MenuItemType.Standard)
: this(text, type, null)
{
}
public TestMenuItem(string text, MenuItemType type, Func<TestStates, TestStates> changeStateFunc)
: base(text, changeStateFunc, type)
{