diff --git a/osu.Game/Beatmaps/BeatmapManager.cs b/osu.Game/Beatmaps/BeatmapManager.cs
index 7252bad3c4..143ae81fa6 100644
--- a/osu.Game/Beatmaps/BeatmapManager.cs
+++ b/osu.Game/Beatmaps/BeatmapManager.cs
@@ -503,6 +503,9 @@ namespace osu.Game.Beatmaps
/// Results from the provided query.
public IEnumerable QueryBeatmaps(Expression> query) => beatmaps.Beatmaps.AsNoTracking().Where(query);
+ ///
+ /// Import a into the beatmap store.
+ ///
private void import(BeatmapSetInfo beatmapSet, OsuDbContext context) => getBeatmapStoreWithContext(context).Add(beatmapSet);
///
@@ -530,10 +533,8 @@ namespace osu.Game.Beatmaps
}
///
- ///
+ /// Create a from a provided archive.
///
- ///
- ///
private BeatmapSetInfo createBeatmapSetInfo(ArchiveReader reader)
{
// let's make sure there are actually .osu files to import.
@@ -553,6 +554,9 @@ namespace osu.Game.Beatmaps
};
}
+ ///
+ /// Create all required s for the provided archive, adding them to the global file store.
+ ///
private List createFileInfos(ArchiveReader reader, FileStore files)
{
List fileInfos = new List();