mirror of
https://github.com/ppy/osu.git
synced 2025-01-13 10:43:04 +08:00
Remove unused fields
This commit is contained in:
parent
ae967e08b0
commit
b871d6f078
@ -48,9 +48,6 @@ namespace osu.Game.Overlays.BeatmapSet
|
|||||||
private readonly LinkFlowContainer title, artist;
|
private readonly LinkFlowContainer title, artist;
|
||||||
private readonly AuthorInfo author;
|
private readonly AuthorInfo author;
|
||||||
|
|
||||||
private ExplicitContentBeatmapBadge explicitContent;
|
|
||||||
private SpotlightBeatmapBadge spotlight;
|
|
||||||
private FeaturedArtistBeatmapBadge featuredArtist;
|
|
||||||
private ExternalLinkButton externalLink;
|
private ExternalLinkButton externalLink;
|
||||||
|
|
||||||
private readonly FillFlowContainer downloadButtonsContainer;
|
private readonly FillFlowContainer downloadButtonsContainer;
|
||||||
@ -266,7 +263,7 @@ namespace osu.Game.Overlays.BeatmapSet
|
|||||||
title.AddArbitraryDrawable(new Container
|
title.AddArbitraryDrawable(new Container
|
||||||
{
|
{
|
||||||
AutoSizeAxes = Axes.Both,
|
AutoSizeAxes = Axes.Both,
|
||||||
Child = explicitContent = new ExplicitContentBeatmapBadge { Margin = new MarginPadding { Left = 10 } },
|
Child = new ExplicitContentBeatmapBadge { Margin = new MarginPadding { Left = 10 } },
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -275,7 +272,7 @@ namespace osu.Game.Overlays.BeatmapSet
|
|||||||
title.AddArbitraryDrawable(new Container
|
title.AddArbitraryDrawable(new Container
|
||||||
{
|
{
|
||||||
AutoSizeAxes = Axes.Both,
|
AutoSizeAxes = Axes.Both,
|
||||||
Child = spotlight = new SpotlightBeatmapBadge { Margin = new MarginPadding { Left = 10 } },
|
Child = new SpotlightBeatmapBadge { Margin = new MarginPadding { Left = 10 } },
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -286,7 +283,7 @@ namespace osu.Game.Overlays.BeatmapSet
|
|||||||
artist.AddArbitraryDrawable(new Container
|
artist.AddArbitraryDrawable(new Container
|
||||||
{
|
{
|
||||||
AutoSizeAxes = Axes.Both,
|
AutoSizeAxes = Axes.Both,
|
||||||
Child = featuredArtist = new FeaturedArtistBeatmapBadge { Margin = new MarginPadding { Left = 10 } }
|
Child = new FeaturedArtistBeatmapBadge { Margin = new MarginPadding { Left = 10 } }
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user