1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-15 01:02:55 +08:00

Remove redundant xmldoc and reword some remaining

This commit is contained in:
Dean Herbert 2023-05-06 23:10:09 +09:00
parent 71864fbb93
commit e75ff33d62

View File

@ -16,7 +16,7 @@ using Realms;
namespace osu.Game.Database namespace osu.Game.Database
{ {
/// <summary> /// <summary>
/// A class which handles exporting legacy user data of a single type from osu-stable. /// Handles exporting models to files for sharing / consumption outside the game.
/// </summary> /// </summary>
public abstract class LegacyExporter<TModel> public abstract class LegacyExporter<TModel>
where TModel : RealmObject, IHasNamedFiles, IHasGuidPrimaryKey where TModel : RealmObject, IHasNamedFiles, IHasGuidPrimaryKey
@ -45,11 +45,6 @@ namespace osu.Game.Database
public Action<Notification>? PostNotification { get; set; } public Action<Notification>? PostNotification { get; set; }
/// <summary>
/// Construct exporter.
/// Create a new exporter for each export, otherwise it will cause confusing notifications.
/// </summary>
/// <param name="storage">Storage for storing exported files. Basically it is used to provide export stream</param>
protected LegacyExporter(Storage storage) protected LegacyExporter(Storage storage)
{ {
exportStorage = storage.GetStorageForDirectory(@"exports"); exportStorage = storage.GetStorageForDirectory(@"exports");