1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-13 15:43:22 +08:00

Throw not implemented exceptions

This commit is contained in:
smoogipoo 2021-08-16 12:44:12 +09:00
parent 76a8d4329f
commit 3db0b69f92

View File

@ -141,17 +141,11 @@ namespace osu.Game.Tests.Visual.Playlists
public IBindableList<Room> Rooms => null;
public void AddOrUpdateRoom(Room room)
{
}
public void AddOrUpdateRoom(Room room) => throw new NotImplementedException();
public void RemoveRoom(Room room)
{
}
public void RemoveRoom(Room room) => throw new NotImplementedException();
public void ClearRooms()
{
}
public void ClearRooms() => throw new NotImplementedException();
public void CreateRoom(Room room, Action<Room> onSuccess = null, Action<string> onError = null)
{