Rename "playableBeatmap" check arg to "beatmap"

The working beatmap is now in the context, so it's easier to distinguish beatmap type, hence no need for this prefix.
This commit is contained in:
Naxess
2021-05-12 02:34:16 +02:00
parent 64d96b06a6
commit b7bc42e0d3
12 changed files with 28 additions and 28 deletions

View File

@ -32,9 +32,9 @@ namespace osu.Game.Rulesets.Osu.Edit.Checks
new IssueTemplateOffscreenSlider(this)
};
public IEnumerable<Issue> Run(IBeatmap playableBeatmap, BeatmapVerifierContext context)
public IEnumerable<Issue> Run(IBeatmap beatmap, BeatmapVerifierContext context)
{
foreach (var hitobject in playableBeatmap.HitObjects)
foreach (var hitobject in beatmap.HitObjects)
{
switch (hitobject)
{