Remove unnecessary getters from ScreenTitle

This commit is contained in:
Dean Herbert 2019-05-21 11:13:36 +09:00
parent 2cf43dc4d4
commit 587e4bb5d5
1 changed files with 0 additions and 3 deletions

View File

@ -19,19 +19,16 @@ public abstract class ScreenTitle : CompositeDrawable, IHasAccentColour
protected IconUsage Icon
{
get => iconSprite.Icon;
set => iconSprite.Icon = value;
}
protected string Title
{
get => titleText.Text;
set => titleText.Text = value;
}
protected string Section
{
get => pageText.Text;
set => pageText.Text = value;
}