Shortcut extras population

This commit is contained in:
Matt Nadareski
2021-02-09 22:25:43 -08:00
parent 8d1d2391a7
commit af8e26f0b4

View File

@@ -50,6 +50,10 @@ namespace SabreTools.Filtering
/// <param name="inputs">Field and file combinations</param>
public void PopulateFromList(List<string> inputs)
{
// If there are no inputs, just skip
if (inputs == null || !inputs.Any())
return;
InternalStopwatch watch = new InternalStopwatch("Populating extras from list");
foreach (string input in inputs)