[SabreTools.Helper.Dats] Remove unnecessary constructors

This commit is contained in:
Matt Nadareski
2016-10-24 13:38:20 -07:00
parent 9a3527921f
commit a61b82eb6a
6 changed files with 9 additions and 92 deletions

View File

@@ -39,20 +39,6 @@ namespace SabreTools.Helper.Dats
_itemType = ItemType.BiosSet;
}
/// <summary>
/// Create a new Sample object with the included information
/// </summary>
/// <param name="name">Name of the item, including extension</param>
/// <param name="description">Description of the Bios set item</param>
/// <param name="default">True if this is the default BIOS, false if it is not, null for undefined</param>
public BiosSet(string name, string description, bool? @default)
{
_name = name;
_itemType = ItemType.BiosSet;
_description = description;
_default = @default;
}
#endregion
#region Comparision Methods