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
1 changed files with 1 additions and 6 deletions

View File

@ -16,7 +16,7 @@
namespace osu.Game.Database
{
/// <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>
public abstract class LegacyExporter<TModel>
where TModel : RealmObject, IHasNamedFiles, IHasGuidPrimaryKey
@ -45,11 +45,6 @@ public abstract class LegacyExporter<TModel>
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)
{
exportStorage = storage.GetStorageForDirectory(@"exports");