1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 20:07:25 +08:00

Fix 'auto-property never assigned to' inspections

This commit is contained in:
Bartłomiej Dach 2022-03-08 21:41:10 +01:00
parent 6fd8b4d891
commit e91226f578
No known key found for this signature in database
GPG Key ID: BCECCD4FA41F6497

View File

@ -322,8 +322,8 @@ namespace osu.Game.Tests.Rulesets.Scoring
public override DifficultyCalculator CreateDifficultyCalculator(IWorkingBeatmap beatmap) => throw new System.NotImplementedException();
public override string Description { get; }
public override string ShortName { get; }
public override string Description => string.Empty;
public override string ShortName => string.Empty;
}
private class TestJudgement : Judgement