Remove now unused references

This commit is contained in:
smoogipoo 2017-12-21 22:13:18 +09:00
parent d80079a73a
commit 866d1c6e0f
2 changed files with 1 additions and 3 deletions

View File

@ -20,7 +20,6 @@
using osu.Game.Database;
using osu.Game.Graphics;
using osu.Game.IO;
using osu.Game.IO.Serialization;
using osu.Game.IPC;
using osu.Game.Online.API;
using osu.Game.Online.API.Requests;

View File

@ -20,7 +20,7 @@ public class GeneralSettings : SettingsSubsection
protected override string Header => "General";
[BackgroundDependencyLoader]
private void load(OsuGameBase osuGame, BeatmapManager beatmaps)
private void load(BeatmapManager beatmaps)
{
Children = new Drawable[]
{
@ -57,7 +57,6 @@ private void load(OsuGameBase osuGame, BeatmapManager beatmaps)
}
}
};
}
}
}