From 7be2abba8b566942a0e07bf831a8ce2d353cb3c9 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Sat, 22 Aug 2020 23:05:27 -0700 Subject: [PATCH] Remove obsolete comments --- SabreTools.Library/DatFiles/Listxml.cs | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/SabreTools.Library/DatFiles/Listxml.cs b/SabreTools.Library/DatFiles/Listxml.cs index b4eb455c..c0e2d790 100644 --- a/SabreTools.Library/DatFiles/Listxml.cs +++ b/SabreTools.Library/DatFiles/Listxml.cs @@ -390,18 +390,6 @@ namespace SabreTools.Library.DatFiles var dipSwitch = new ListXMLDipSwitch(reader.GetAttribute("name"), reader.GetAttribute("tag"), reader.GetAttribute("mask")); ReadDipSwitch(reader.ReadSubtree(), dipSwitch); - // // While the subtree contains elements... - // TODO: Populate the dipswitch with the diplocations - // string diplocation_name = reader.GetAttribute("name"); - // string diplocation_number = reader.GetAttribute("number"); - // bool? diplocation_inverted = Utilities.GetYesNo(reader.GetAttribute("inverted")); - - // // While the subtree contains elements... - // TODO: Populate the dipswitch with the dipvalues - // string dipvalue_name = reader.GetAttribute("name"); - // string dipvalue_value = reader.GetAttribute("value"); - // bool? dipvalue_default = Utilities.GetYesNo(reader.GetAttribute("default")); - // Skip the dipswitch now that we've processed it reader.Skip(); break;