mirror of
https://github.com/ppy/osu.git
synced 2025-01-19 15:02:54 +08:00
Remove unused argument
This commit is contained in:
parent
7c8c6790d0
commit
b384a3258d
@ -40,7 +40,7 @@ namespace osu.Game.Beatmaps
|
||||
{
|
||||
foreach (var beatmapInfo in beatmapSet.Beatmaps)
|
||||
{
|
||||
var res = lookup(beatmapSet, beatmapInfo, preferOnlineFetch);
|
||||
var res = lookup(beatmapInfo, preferOnlineFetch);
|
||||
|
||||
if (res == null)
|
||||
{
|
||||
@ -71,7 +71,7 @@ namespace osu.Game.Beatmaps
|
||||
}
|
||||
}
|
||||
|
||||
private OnlineBeatmapMetadata? lookup(BeatmapSetInfo set, BeatmapInfo beatmapInfo, bool preferOnlineFetch)
|
||||
private OnlineBeatmapMetadata? lookup(BeatmapInfo beatmapInfo, bool preferOnlineFetch)
|
||||
{
|
||||
OnlineBeatmapMetadata? result = null;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user