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

removed unused DI

This commit is contained in:
Aergwyn 2017-12-08 14:45:40 +01:00
parent c97646bea6
commit 114604a642

View File

@ -2,12 +2,6 @@
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using osu.Framework.Allocation;
using osu.Game.Beatmaps;
using osu.Game.Graphics;
using osu.Game.Overlays.Dialog;
@ -15,14 +9,6 @@ namespace osu.Game.Overlays.Settings.Sections.Maintenance
{
public class DeleteAllBeatmapsDialog : PopupDialog
{
private BeatmapManager manager;
[BackgroundDependencyLoader]
private void load(BeatmapManager beatmapManager)
{
manager = beatmapManager;
}
public DeleteAllBeatmapsDialog(Action deleteAction)
{
BodyText = "Everything?";