Features always need information

This commit is contained in:
Matt Nadareski
2024-07-18 01:11:03 -04:00
parent f0ff6c6990
commit a0e5f9b93e

View File

@@ -26,14 +26,6 @@ namespace SabreTools.Help
#region Constructors
public Feature()
{
_featureType = ParameterType.Flag;
Name = null;
Description = null;
LongDescription = null;
}
public Feature(string name, string flag, string description, ParameterType featureType, string? longDescription = null)
{
_featureType = featureType;