Remove unused cache

This commit is contained in:
Bartłomiej Dach 2024-05-03 11:36:18 +02:00
parent f57818f5a2
commit 221b4cd599
No known key found for this signature in database
2 changed files with 0 additions and 4 deletions

View File

@ -111,7 +111,6 @@ namespace osu.Game.Online.Rooms
[JsonProperty("current_user_score")] [JsonProperty("current_user_score")]
public readonly Bindable<PlaylistAggregateScore> UserScore = new Bindable<PlaylistAggregateScore>(); public readonly Bindable<PlaylistAggregateScore> UserScore = new Bindable<PlaylistAggregateScore>();
[Cached]
[JsonProperty("has_password")] [JsonProperty("has_password")]
public readonly Bindable<bool> HasPassword = new Bindable<bool>(); public readonly Bindable<bool> HasPassword = new Bindable<bool>();

View File

@ -77,9 +77,6 @@ namespace osu.Game.Screens.OnlinePlay
[Resolved(typeof(Room))] [Resolved(typeof(Room))]
public Bindable<string> Password { get; private set; } public Bindable<string> Password { get; private set; }
[Resolved(typeof(Room))]
public Bindable<bool> HasPassword { get; private set; }
[Resolved(typeof(Room))] [Resolved(typeof(Room))]
protected Bindable<TimeSpan?> Duration { get; private set; } protected Bindable<TimeSpan?> Duration { get; private set; }