mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
Clean up Get/SetName
This commit is contained in:
@@ -129,18 +129,13 @@ namespace SabreTools.DatItems
|
||||
/// Gets the name to use for a DatItem
|
||||
/// </summary>
|
||||
/// <returns>Name if available, null otherwise</returns>
|
||||
public virtual string GetName()
|
||||
{
|
||||
return null;
|
||||
}
|
||||
public virtual string GetName() => null;
|
||||
|
||||
/// <summary>
|
||||
/// Sets the name to use for a DatItem
|
||||
/// </summary>
|
||||
/// <param name="name">Name to set for the item</param>
|
||||
public virtual void SetName(string name)
|
||||
{
|
||||
}
|
||||
public virtual void SetName(string name) { }
|
||||
|
||||
#endregion
|
||||
|
||||
|
||||
Reference in New Issue
Block a user