Remove redundant qualifiers

This commit is contained in:
smoogipoo 2019-02-08 15:44:05 +09:00
parent 6fe1f57236
commit 5643dc2e99
2 changed files with 3 additions and 3 deletions

View File

@ -175,7 +175,7 @@ namespace osu.Game.Screens.Multi.Lounge.Components
protected override IReadOnlyDependencyContainer CreateChildDependencies(IReadOnlyDependencyContainer parent) protected override IReadOnlyDependencyContainer CreateChildDependencies(IReadOnlyDependencyContainer parent)
{ {
var dependencies = new DependencyContainer(base.CreateChildDependencies(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; return dependencies;
} }
@ -209,7 +209,7 @@ namespace osu.Game.Screens.Multi.Lounge.Components
private class StatusText : OsuSpriteText private class StatusText : OsuSpriteText
{ {
[Resolved(typeof(Room), nameof(Online.Multiplayer.Room.Status))] [Resolved(typeof(Room), nameof(Room.Status))]
private Bindable<RoomStatus> status { get; set; } private Bindable<RoomStatus> status { get; set; }
[BackgroundDependencyLoader] [BackgroundDependencyLoader]

View File

@ -115,7 +115,7 @@ namespace osu.Game.Screens.Multi.Match.Components
private class BeatmapSelectButton : HeaderButton private class BeatmapSelectButton : HeaderButton
{ {
[Resolved(typeof(Room), nameof(Online.Multiplayer.Room.RoomID))] [Resolved(typeof(Room), nameof(Room.RoomID))]
private Bindable<int?> roomId { get; set; } private Bindable<int?> roomId { get; set; }
public BeatmapSelectButton() public BeatmapSelectButton()