1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-15 05:02:55 +08:00

Fix code factor issues

> ran "dotnet format --check", shouldn't return whitespace errors anymore
This commit is contained in:
「空白」 2020-05-13 01:14:11 +09:00
parent 35e7cee458
commit 0c60b10757
2 changed files with 2 additions and 5 deletions

View File

@ -154,7 +154,7 @@ namespace osu.Game.Overlays.BeatmapListing
currentBeatmaps = beatmaps;
else
currentBeatmaps.AddRange(beatmaps);
SearchFinished?.Invoke(beatmaps);
}

View File

@ -44,7 +44,7 @@ namespace osu.Game.Overlays
{
}
private BeatmapListingFilterControl filterControl;//actual search settings
private BeatmapListingFilterControl filterControl;
[BackgroundDependencyLoader]
private void load()
@ -157,7 +157,6 @@ namespace osu.Game.Overlays
//Pagination case
else
{
beatmaps.ForEach(x =>
{
LoadComponentAsync(new GridBeatmapPanel(x)
@ -198,7 +197,6 @@ namespace osu.Game.Overlays
currentContent = content;
}
protected override void Dispose(bool isDisposing)
{
cancellationToken?.Cancel();
@ -253,7 +251,6 @@ namespace osu.Game.Overlays
if (shouldAddNextPage)
filterControl.AddPageToResult();
}
}
}