Remove redundant parameter naming

This commit is contained in:
Dean Herbert
2021-04-12 23:37:47 +09:00
parent 36bd235021
commit 62c1812282
2 changed files with 2 additions and 10 deletions

View File

@ -23,11 +23,7 @@ namespace osu.Game.Rulesets.Edit.Checks
};
}
public CheckMetadata Metadata { get; } = new CheckMetadata
(
category: CheckCategory.Resources,
description: "Missing background."
);
public CheckMetadata Metadata { get; } = new CheckMetadata(CheckCategory.Resources, "Missing background");
public IEnumerable<IssueTemplate> PossibleTemplates => templates;