diff --git a/osu.Game/Database/DownloadableArchiveModelManager.cs b/osu.Game/Database/DownloadableArchiveModelManager.cs
index 0735452ce3..fc50a4720a 100644
--- a/osu.Game/Database/DownloadableArchiveModelManager.cs
+++ b/osu.Game/Database/DownloadableArchiveModelManager.cs
@@ -72,11 +72,6 @@ namespace osu.Game.Database
return true;
}
- ///
- /// Checks whether a given is available in the local store already.
- ///
- /// The whose existence needs to be checked.
- /// Whether the exists locally.
public virtual bool IsAvailableLocally(TModel model) => modelStore.ConsumableItems.Any(m => m.Equals(model) && !m.DeletePending);
public ArchiveDownloadRequest GetExistingDownload(TModel model) => currentDownloads.Find(r => r.Model.Equals(model));
diff --git a/osu.Game/Database/IModelDownloader.cs b/osu.Game/Database/IModelDownloader.cs
index 42c64ba67b..b4f8c1e24a 100644
--- a/osu.Game/Database/IModelDownloader.cs
+++ b/osu.Game/Database/IModelDownloader.cs
@@ -23,6 +23,12 @@ namespace osu.Game.Database
///
event Action> DownloadFailed;
+
+ ///
+ /// Checks whether a given is already available in the local store.
+ ///
+ /// The whose existence needs to be checked.
+ /// Whether the exists.
bool IsAvailableLocally(TModel model);
///