1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-19 07:42:58 +08:00

Remove not-accessed field

This commit is contained in:
Dean Herbert 2017-11-23 18:11:35 +09:00
parent 30db2ce18a
commit 38f5c55f80

View File

@ -73,8 +73,6 @@ namespace osu.Game.Overlays.Profile.Sections.Kudosu
private class CountSection : Container
{
public readonly TextFlowContainer TextFlow;
private readonly OsuSpriteText valueText;
public int Count
@ -122,7 +120,7 @@ namespace osu.Game.Overlays.Profile.Sections.Kudosu
}
}
},
TextFlow = new TextFlowContainer(t => { t.TextSize = 19; })
new TextFlowContainer(t => { t.TextSize = 19; })
{
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,