1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-15 01:10:06 +08:00

Revert unnecessary changes

This commit is contained in:
Dan Balasescu 2024-02-02 21:05:12 +09:00
parent b44f77cee1
commit 20ae88b0a0
No known key found for this signature in database
2 changed files with 7 additions and 7 deletions

View File

@ -57,7 +57,7 @@ namespace osu.Game.Tests.Visual.Multiplayer
{ {
AddStep("join room", () => AddStep("join room", () =>
{ {
SelectedRoom!.Value = CreateRoom(); SelectedRoom.Value = CreateRoom();
RoomManager.CreateRoom(SelectedRoom.Value); RoomManager.CreateRoom(SelectedRoom.Value);
}); });

View File

@ -16,31 +16,31 @@ namespace osu.Game.Tests.Visual.OnlinePlay
/// <summary> /// <summary>
/// The cached <see cref="Room"/>. /// The cached <see cref="Room"/>.
/// </summary> /// </summary>
Bindable<Room>? SelectedRoom { get; } Bindable<Room> SelectedRoom { get; }
/// <summary> /// <summary>
/// The cached <see cref="IRoomManager"/> /// The cached <see cref="IRoomManager"/>
/// </summary> /// </summary>
IRoomManager? RoomManager { get; } IRoomManager RoomManager { get; }
/// <summary> /// <summary>
/// The cached <see cref="OngoingOperationTracker"/>. /// The cached <see cref="OngoingOperationTracker"/>.
/// </summary> /// </summary>
OngoingOperationTracker? OngoingOperationTracker { get; } OngoingOperationTracker OngoingOperationTracker { get; }
/// <summary> /// <summary>
/// The cached <see cref="OnlinePlayBeatmapAvailabilityTracker"/>. /// The cached <see cref="OnlinePlayBeatmapAvailabilityTracker"/>.
/// </summary> /// </summary>
OnlinePlayBeatmapAvailabilityTracker? AvailabilityTracker { get; } OnlinePlayBeatmapAvailabilityTracker AvailabilityTracker { get; }
/// <summary> /// <summary>
/// The cached <see cref="UserLookupCache"/>. /// The cached <see cref="UserLookupCache"/>.
/// </summary> /// </summary>
TestUserLookupCache? UserLookupCache { get; } TestUserLookupCache UserLookupCache { get; }
/// <summary> /// <summary>
/// The cached <see cref="BeatmapLookupCache"/>. /// The cached <see cref="BeatmapLookupCache"/>.
/// </summary> /// </summary>
BeatmapLookupCache? BeatmapLookupCache { get; } BeatmapLookupCache BeatmapLookupCache { get; }
} }
} }