Remove compiler warnings

This commit is contained in:
smoogipoo 2019-02-08 16:02:00 +09:00
parent febcd7d7c0
commit ee5ff283d1
2 changed files with 10 additions and 2 deletions

View File

@ -71,7 +71,11 @@ public TestCaseLoungeRoomsContainer()
private class TestRoomManager : IRoomManager
{
public event Action RoomsUpdated;
public event Action RoomsUpdated
{
add => throw new NotImplementedException();
remove => throw new NotImplementedException();
}
public readonly BindableList<Room> Rooms = new BindableList<Room>();
IBindableList<Room> IRoomManager.Rooms => Rooms;

View File

@ -131,7 +131,11 @@ private class TestRoomManager : IRoomManager
public Func<Room, bool> CreateRequested;
public event Action RoomsUpdated;
public event Action RoomsUpdated
{
add => throw new NotImplementedException();
remove => throw new NotImplementedException();
}
public IBindableList<Room> Rooms { get; } = null;