diff --git a/osu.Game.Rulesets.Taiko/TaikoRuleset.cs b/osu.Game.Rulesets.Taiko/TaikoRuleset.cs
index 555c272954..04bb08395b 100644
--- a/osu.Game.Rulesets.Taiko/TaikoRuleset.cs
+++ b/osu.Game.Rulesets.Taiko/TaikoRuleset.cs
@@ -239,7 +239,7 @@ namespace osu.Game.Rulesets.Taiko
{
Columns = new[]
{
- new StatisticItem(null, () => new SimpleStatisticTable(3, new SimpleStatisticItem[]
+ new StatisticItem(string.Empty, () => new SimpleStatisticTable(3, new SimpleStatisticItem[]
{
new AverageHitError(timedHitEvents),
new UnstableRate(timedHitEvents)
diff --git a/osu.Game/Screens/Ranking/Statistics/StatisticItem.cs b/osu.Game/Screens/Ranking/Statistics/StatisticItem.cs
index e1ea352f1c..e3ac054d1b 100644
--- a/osu.Game/Screens/Ranking/Statistics/StatisticItem.cs
+++ b/osu.Game/Screens/Ranking/Statistics/StatisticItem.cs
@@ -19,7 +19,7 @@ namespace osu.Game.Screens.Ranking.Statistics
///
/// The name of this item.
///
- public readonly LocalisableString? Name;
+ public readonly LocalisableString Name;
///
/// A function returning the content to be displayed.
@@ -49,7 +49,7 @@ namespace osu.Game.Screens.Ranking.Statistics
/// A function returning the content to be displayed.
/// Whether this item requires hit events. If true, will not be called if no hit events are available.
/// The of this item. This can be thought of as the column dimension of an encompassing .
- public StatisticItem(LocalisableString? name, [NotNull] Func createContent, bool requiresHitEvents = false, [CanBeNull] Dimension dimension = null)
+ public StatisticItem(LocalisableString name, [NotNull] Func createContent, bool requiresHitEvents = false, [CanBeNull] Dimension dimension = null)
{
Name = name;
RequiresHitEvents = requiresHitEvents;