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:
parent
b44f77cee1
commit
20ae88b0a0
@ -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);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -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; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user