1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-28 04:42:58 +08:00

Remove redundant default bindable value

This commit is contained in:
Dean Herbert 2021-05-26 14:17:40 +09:00
parent 06fe0563d3
commit 7b09955d59

View File

@ -16,7 +16,7 @@ namespace osu.Game.Overlays
{
public class NewsOverlay : OnlineOverlay<NewsHeader>
{
private readonly Bindable<string> article = new Bindable<string>(null);
private readonly Bindable<string> article = new Bindable<string>();
private readonly Container sidebarContainer;
private readonly NewsSidebar sidebar;