mirror of
https://github.com/ppy/osu.git
synced 2024-11-13 13:57:26 +08:00
Revert unnecessary changes
This commit is contained in:
parent
b44f77cee1
commit
20ae88b0a0
@ -57,7 +57,7 @@ namespace osu.Game.Tests.Visual.Multiplayer
|
||||
{
|
||||
AddStep("join room", () =>
|
||||
{
|
||||
SelectedRoom!.Value = CreateRoom();
|
||||
SelectedRoom.Value = CreateRoom();
|
||||
RoomManager.CreateRoom(SelectedRoom.Value);
|
||||
});
|
||||
|
||||
|
@ -16,31 +16,31 @@ namespace osu.Game.Tests.Visual.OnlinePlay
|
||||
/// <summary>
|
||||
/// The cached <see cref="Room"/>.
|
||||
/// </summary>
|
||||
Bindable<Room>? SelectedRoom { get; }
|
||||
Bindable<Room> SelectedRoom { get; }
|
||||
|
||||
/// <summary>
|
||||
/// The cached <see cref="IRoomManager"/>
|
||||
/// </summary>
|
||||
IRoomManager? RoomManager { get; }
|
||||
IRoomManager RoomManager { get; }
|
||||
|
||||
/// <summary>
|
||||
/// The cached <see cref="OngoingOperationTracker"/>.
|
||||
/// </summary>
|
||||
OngoingOperationTracker? OngoingOperationTracker { get; }
|
||||
OngoingOperationTracker OngoingOperationTracker { get; }
|
||||
|
||||
/// <summary>
|
||||
/// The cached <see cref="OnlinePlayBeatmapAvailabilityTracker"/>.
|
||||
/// </summary>
|
||||
OnlinePlayBeatmapAvailabilityTracker? AvailabilityTracker { get; }
|
||||
OnlinePlayBeatmapAvailabilityTracker AvailabilityTracker { get; }
|
||||
|
||||
/// <summary>
|
||||
/// The cached <see cref="UserLookupCache"/>.
|
||||
/// </summary>
|
||||
TestUserLookupCache? UserLookupCache { get; }
|
||||
TestUserLookupCache UserLookupCache { get; }
|
||||
|
||||
/// <summary>
|
||||
/// The cached <see cref="BeatmapLookupCache"/>.
|
||||
/// </summary>
|
||||
BeatmapLookupCache? BeatmapLookupCache { get; }
|
||||
BeatmapLookupCache BeatmapLookupCache { get; }
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user