Remove unnecessary local bindable

This commit is contained in:
Andrei Zavatski 2020-01-11 17:48:09 +03:00
parent 7dbb4d919b
commit d25ef1966d
1 changed files with 1 additions and 3 deletions

View File

@ -20,7 +20,6 @@ public class SongTicker : Container
[Resolved]
private Bindable<WorkingBeatmap> beatmap { get; set; }
private readonly Bindable<WorkingBeatmap> workingBeatmap = new Bindable<WorkingBeatmap>();
private readonly OsuSpriteText title, artist;
public SongTicker()
@ -52,8 +51,7 @@ public SongTicker()
protected override void LoadComplete()
{
base.LoadComplete();
workingBeatmap.BindTo(beatmap);
workingBeatmap.BindValueChanged(onBeatmapChanged);
beatmap.BindValueChanged(onBeatmapChanged);
}
private void onBeatmapChanged(ValueChangedEvent<WorkingBeatmap> working)