From 7fbae5623b8cd456688cd262f914cb32131f35d5 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Thu, 3 Nov 2022 16:01:03 -0700 Subject: [PATCH] Add ShouldIgnore note, possibly for `strict` --- SabreTools.DatFiles/DatFile.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/SabreTools.DatFiles/DatFile.cs b/SabreTools.DatFiles/DatFile.cs index 26b81f5d..dceb091b 100644 --- a/SabreTools.DatFiles/DatFile.cs +++ b/SabreTools.DatFiles/DatFile.cs @@ -559,6 +559,9 @@ namespace SabreTools.DatFiles if (!GetSupportedTypes().Contains(datItem.ItemType)) return true; + // TODO: Add code to filter out items missing fields + // Maybe it should be an abstract method that's overridden per type? + return false; }