From d7959d761b8e74395c3dfbd77c7cb75ce8427a67 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Wed, 23 Oct 2024 21:11:07 -0400 Subject: [PATCH] Minor optimization --- SabreTools.Help/FeatureSet.cs | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/SabreTools.Help/FeatureSet.cs b/SabreTools.Help/FeatureSet.cs index d9362131..0f3ab391 100644 --- a/SabreTools.Help/FeatureSet.cs +++ b/SabreTools.Help/FeatureSet.cs @@ -16,10 +16,6 @@ namespace SabreTools.Help #region Constructors - public FeatureSet() - { - } - public FeatureSet(List header) { _header.AddRange(header); @@ -273,7 +269,7 @@ namespace SabreTools.Help /// Name that should be assigned to the feature /// Feature with possible subfeatures to test /// List of Features representing what is enabled - private Dictionary GetEnabledSubfeatures(string key, Feature? feature) + private static Dictionary GetEnabledSubfeatures(string key, Feature? feature) { Dictionary enabled = []; @@ -304,7 +300,6 @@ namespace SabreTools.Help /// /// Write out the help text with pauses, if needed /// - /// private static void WriteOutWithPauses(List helptext) { // Now output based on the size of the screen