Remove unnecessary complexity

This commit is contained in:
Matt Nadareski
2020-07-27 15:21:59 -07:00
parent 5e1a10c797
commit 22f8fb03e9
13 changed files with 308 additions and 67 deletions

View File

@@ -2231,7 +2231,7 @@ Some special strings that can be used:
foreach (string fieldName in GetList(features, ExcludeFieldListValue))
{
datHeader.ExcludeFields[(int)fieldName.AsField()] = true;
datHeader.ExcludeFields.Add(fieldName.AsField());
}
return datHeader;