Clean up Get/SetName

This commit is contained in:
Matt Nadareski
2020-12-14 10:15:28 -08:00
parent f8b9dfa122
commit bfdf219a78
27 changed files with 54 additions and 216 deletions

View File

@@ -33,16 +33,10 @@ namespace SabreTools.DatItems
#region Accessors
/// <inheritdoc/>
public override string GetName()
{
return Name;
}
public override string GetName() => Name;
/// <inheritdoc/>
public override void SetName(string name)
{
Name = name;
}
public override void SetName(string name) => Name = name;
#endregion