From 4fa2c5c8c1fdcb9b51b629832bedd25f992a5284 Mon Sep 17 00:00:00 2001 From: smoogipoo Date: Fri, 17 Jan 2020 18:52:13 +0900 Subject: [PATCH] Resolve unassigned properties --- osu.Game.Tests/Online/TestAPIModSerialization.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/osu.Game.Tests/Online/TestAPIModSerialization.cs b/osu.Game.Tests/Online/TestAPIModSerialization.cs index 845f57136a..d9318aa822 100644 --- a/osu.Game.Tests/Online/TestAPIModSerialization.cs +++ b/osu.Game.Tests/Online/TestAPIModSerialization.cs @@ -59,8 +59,8 @@ namespace osu.Game.Tests.Online public override DifficultyCalculator CreateDifficultyCalculator(WorkingBeatmap beatmap) => throw new System.NotImplementedException(); - public override string Description { get; } - public override string ShortName { get; } + public override string Description { get; } = string.Empty; + public override string ShortName { get; } = string.Empty; } private class TestMod : Mod