1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-16 03:02:56 +08:00

Remove unused usings

This commit is contained in:
naoey 2019-06-11 20:21:06 +05:30
parent 802f48712d
commit 709ca03a08
No known key found for this signature in database
GPG Key ID: 670DA9BE3DF7EE60
2 changed files with 1 additions and 3 deletions

View File

@ -6,7 +6,6 @@ using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Linq.Expressions;
using System.Threading.Tasks;
using Microsoft.EntityFrameworkCore;
using osu.Framework.Audio;
using osu.Framework.Audio.Track;
@ -19,7 +18,6 @@ using osu.Game.Database;
using osu.Game.IO.Archives;
using osu.Game.Online.API;
using osu.Game.Online.API.Requests;
using osu.Game.Overlays.Notifications;
using osu.Game.Rulesets;
namespace osu.Game.Beatmaps

View File

@ -38,7 +38,7 @@ namespace osu.Game.Database
private readonly List<TDownloadRequestModel> currentDownloads = new List<TDownloadRequestModel>();
protected ArchiveDownloadModelManager(Storage storage, IDatabaseContextFactory contextFactory, IAPIProvider api, MutableDatabaseBackedStoreWithFileIncludes<TModel, TFileModel> modelStore, IIpcHost importHost = null)
:base(storage, contextFactory, modelStore, importHost)
: base(storage, contextFactory, modelStore, importHost)
{
this.api = api;
}