mirror of https://github.com/ppy/osu
Remove redundant xmldoc and reword some remaining
This commit is contained in:
parent
71864fbb93
commit
e75ff33d62
|
@ -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");
|
||||
|
|
Loading…
Reference in New Issue