mirror of
https://github.com/ppy/osu.git
synced 2025-01-28 04:02:57 +08:00
Remove redundant parameter naming
This commit is contained in:
parent
36bd235021
commit
62c1812282
@ -35,11 +35,7 @@ namespace osu.Game.Rulesets.Osu.Edit.Checks
|
||||
};
|
||||
}
|
||||
|
||||
public CheckMetadata Metadata { get; } = new CheckMetadata
|
||||
(
|
||||
category: CheckCategory.Compose,
|
||||
description: "Offscreen hitobjects."
|
||||
);
|
||||
public CheckMetadata Metadata { get; } = new CheckMetadata(CheckCategory.Compose, "Offscreen hitobjects");
|
||||
|
||||
public IEnumerable<IssueTemplate> PossibleTemplates => templates;
|
||||
|
||||
|
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user