mirror of
https://github.com/ppy/osu
synced 2024-12-14 10:57:41 +00:00
Remove redundant qualifiers
This commit is contained in:
parent
6fe1f57236
commit
5643dc2e99
@ -175,7 +175,7 @@ namespace osu.Game.Screens.Multi.Lounge.Components
|
||||
protected override IReadOnlyDependencyContainer CreateChildDependencies(IReadOnlyDependencyContainer parent)
|
||||
{
|
||||
var dependencies = new DependencyContainer(base.CreateChildDependencies(parent));
|
||||
dependencies.CacheAs(status, new CacheInfo(nameof(Online.Multiplayer.Room.Status), typeof(Room)));
|
||||
dependencies.CacheAs(status, new CacheInfo(nameof(Room.Status), typeof(Room)));
|
||||
return dependencies;
|
||||
}
|
||||
|
||||
@ -209,7 +209,7 @@ namespace osu.Game.Screens.Multi.Lounge.Components
|
||||
|
||||
private class StatusText : OsuSpriteText
|
||||
{
|
||||
[Resolved(typeof(Room), nameof(Online.Multiplayer.Room.Status))]
|
||||
[Resolved(typeof(Room), nameof(Room.Status))]
|
||||
private Bindable<RoomStatus> status { get; set; }
|
||||
|
||||
[BackgroundDependencyLoader]
|
||||
|
@ -115,7 +115,7 @@ namespace osu.Game.Screens.Multi.Match.Components
|
||||
|
||||
private class BeatmapSelectButton : HeaderButton
|
||||
{
|
||||
[Resolved(typeof(Room), nameof(Online.Multiplayer.Room.RoomID))]
|
||||
[Resolved(typeof(Room), nameof(Room.RoomID))]
|
||||
private Bindable<int?> roomId { get; set; }
|
||||
|
||||
public BeatmapSelectButton()
|
||||
|
Loading…
Reference in New Issue
Block a user