[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

@@ -55,24 +55,6 @@ namespace SabreTools.Helper.Dats
_default = null;
}
/// <summary>
/// Create a new Release object with the included information
/// </summary>
/// <param name="name">Name of the item, including extension</param>
/// <param name="region">Region of the item</param>
/// <param name="language">Language of the item</param>
/// <param name="date">String representation of the Date</param>
/// <param name="default">True if this is the default BIOS, false if it is not, null for undefined</param>
public Release(string name, string region, string language, string date, bool? @default)
{
_name = name;
_itemType = ItemType.Release;
_region = region;
_language = language;
_date = date;
_default = @default;
}
#endregion
#region Comparision Methods